Recipes
Ready-made setups for a specific job — a chain of tools, or one tool with the right options already picked. Paste once, get the finished result — all in your browser. Want a custom chain? Use the pipeline builder.
Clean and dedupe a listRemove blank lines, trim spaces, drop duplicates and sort — in one pass.Remove empty lines → Trim lines → Remove duplicate lines → Sort linesConvert CSV to formatted JSONTurn a CSV into an array of objects, then pretty-print the JSON.CSV ⇄ JSON converter → JSON formatter & validatorRemove duplicates and sort linesDrop repeated lines, then sort the unique ones alphabetically.Remove duplicate lines → Sort linesTidy up messy whitespaceCollapse double spaces, trim each line and drop blank lines.Remove extra spaces → Trim lines → Remove empty linesLines to a JavaScript arrayTurn one item per line into a ready-to-paste JavaScript array literal.Text to array converter · New line · JavaScript arrayComma-separated list to an arraySplit a comma-separated line into items and emit a JavaScript array.Text to array converter · Comma · JavaScript arrayNumbers to an arrayTurn a column of numbers into a numeric array — no quotes around the values.Text to array converter · New line · JavaScript array · Leave numbers unquoted · Variable name: numbersText to a Python listTurn a pasted list into a Python list literal, one item per line.Text to array converter · Python list · Variable name: itemsText to a PHP arrayTurn a pasted list into a PHP array using the short [] syntax.Text to array converter · PHP array · Variable name: itemsLines to a JSON arrayTurn a pasted list into a valid JSON array of strings.Text to array converter · JSON arrayList to an SQL IN() clauseTurn a column of values into a parenthesised list for WHERE ... IN (...).Text to array converter · SQL IN() clause