Lists
- How I convert lists without manually editing every line
Many small data tasks are just list shape problems: one item per line needs to become CSV, JSON, quoted strings, or an SQL IN list. The List Converter tool is useful because it lets me check the result in a small, …
- How I format lines into commas, quotes, and SQL lists
A lot of cleanup work starts as one item per line and needs to become a comma-separated list, quoted list, JSON-ish array, or SQL IN clause. The Line Comma Formatter tool handles the repetitive part so I can focus on …