Text operations
- Find & ReplaceFind and replace text with optional regex and case-insensitive matching.
- Add Prefix & Suffix to Each LineAdd a prefix, suffix, or both to every line. Useful for SQL INSERTs, Markdown bullets, CSV prep, and more.
- Wrap Text at N CharactersHard-wrap text at any column width. Choose word-aware or strict character wrapping.
- Extract emailsPull every email address out of any text, deduplicated, one per line.
- Extract URLsPull every http(s) link out of any text, deduplicated, one per line.
- Add line numbersPrefix every line with its line number, padded to fit the largest.
- Shuffle linesRandomise the order of lines (Fisher–Yates).
- Pick a random linePick one random non-empty line from your input.
- Join linesCollapse multi-line text to a single line, separated by a space.
- Convert to LFNormalise line endings to Unix-style \n (LF).
- Convert to CRLFConvert line endings to Windows-style \r\n (CRLF).