Tested tool guide
Text and writing tools
Checked August 15, 2026
What Add Line Numbers to Text does, with a checked example
Add Line Numbers to Text splits pasted text on line breaks and prepends a sequential number to every line, using settings you control: starting number, increment step, zero-padding width, and the separator between the number and the text (a period, colon, tab, or custom string). It runs in the browser on whatever you paste in. The most common surprise is that it treats every line break as a new line, including blank ones, so a paragraph with intentional blank spacing gets numbered gaps unless you strip them first.
Worked example
A concrete input and expected output from the current implementation.
Input
apple
banana
cherry
->
Expected output
1. apple
2. banana
3. cherry
Each of the three input lines gets a sequential number starting at 1 and incrementing by 1, joined to the line with a period-and-space separator - assuming default start, increment, and separator settings, all of which are adjustable.