Add text before or after each line instantly
Enter your multi-line text above, provide a prefix and/or suffix, and click Apply. The tool processes each line individually and adds the specified text automatically.
Input:
apple
banana
mango
Suffix: ,
Output:
apple,
banana,
mango,
Prefix: "
Suffix: ",
Output:
"apple",
"banana",
"mango",
Prefix: INSERT INTO users (name) VALUES ('
Suffix: ');
Output:
INSERT INTO users (name) VALUES ('apple');
INSERT INTO users (name) VALUES ('banana');
INSERT INTO users (name) VALUES ('mango');