Text Wrap
The text wrapper breaks text into lines no longer than a width you choose, splitting only at spaces so words stay intact. Blank lines between paragraphs are preserved and each block is rewrapped independently. An optional prefix on every line produces quoted email replies or block comments in one step.
Your result will appear here.
Not sure where to start? Use Load example.
Results update automatically and are calculated on your device. Nothing you type is sent to a server.
Runs in your browser. Processing happens entirely in your browser. Nothing you enter is sent to Delimiter.live.
How to use the Text Wrap
- Paste the text you want to rewrap.
- Set the width — 72 or 80 is the convention for plain-text email and code comments.
- Add a prefix if you want quoted lines or a comment block.
- Copy or download the result.
Example
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
Common use cases
- Formatting a plain-text email or a commit message to 72 characters.
- Turning a paragraph into a block comment with // or * on every line.
- Quoting text for a reply by prefixing each line with a chevron.
- Fitting text into a fixed-width terminal or a legacy system.
Limitations and things to watch for
- Words are never split. A URL or identifier longer than the width is left on its own line rather than broken, because a broken URL is worse than a long line. The note says when this happened.
- The prefix counts towards the width, so a two-character prefix at width 72 leaves 70 characters of text.
- Existing line breaks inside a paragraph are removed and the paragraph is rewrapped. Blank lines between paragraphs are kept, so structure survives.
- This wraps by character count, not display width. Wide CJK characters occupy two columns in a terminal and are counted as one here.