Input
Output
Lines with prefix/suffix appear here.
Common use cases
- SQL IN clause — prefix
', suffix',→ wrap values in single quotes forWHERE id IN ('a','b','c') - CSV quoting — prefix
", suffix"→ wrap each value in double quotes - Markdown / HTML lists — prefix
-or•→ instant bullet list from plain lines - Code arrays — prefix
', suffix',→ turn a list into a JavaScript/Python array body - Line numbering prep — combine with Number Lines for numbered and prefixed output
Frequently asked questions
How do I create a SQL IN clause from a list?
Prefix: single quote, Suffix: single quote + comma → 'value1', 'value2'. Paste into SQL WHERE id IN (…). Trim the trailing comma from the last line.
How do I wrap CSV values in double quotes?
Prefix: ", Suffix: ". Every line becomes "value". Useful for quoting a column of CSV values.
What does skip blank lines do?
When on, blank lines are left as-is without adding prefix/suffix — preserves visual separators in the input.