This tool converts numbered lines into plain text. It processes your input text line‑by‑line and removes the numbering markers from the beginning of each line. The tool is designed to handle a wide range of numbering variations (for example: "1- Text", "2 - Text", "3) Text", "4. Text", "* 5 * Text", "6* - Text", etc.). You can choose from several options: remove all leading numbering using a generic pattern, remove only specified numbering markers, use a custom regular expression to match numbering, or reformat the cleaned lines with a custom prefix. Simply enter your numbered text, choose the desired conversion mode, adjust the settings, and click the process button.
Examples:
Remove All Leading Numbering
The tool removes all leading numbering markers regardless of variation.
1- This is a sample. 2 - This is another sample. 3) Yet another sample. 4. Sample text. * 5 * Extra sample. 6* - Final sample.
This is a sample. This is another sample. Yet another sample. Sample text. Extra sample. Final sample.
Remove Only Specified Numbering Markers
Only numbering markers that match the specified list are removed. For example, if you specify "1-, 3)", those formats will be stripped while others remain.
1- This is a sample. 2 - This remains unchanged. 3) Yet another sample. 4. Sample text.
This is a sample. 2 - This remains unchanged. Yet another sample. 4. Sample text.
Remove Numbering Using Custom Regex
Uses a custom regex pattern to remove numbering markers. For example, using the regex /^[\*\d\-\.\)\s]+/
removes all leading numbering from various formats.
1- This is a sample. 2 - This is another sample. 3) Yet another sample. 4. Sample text. * 5 * Extra sample.
This is a sample. This is another sample. Yet another sample. Sample text. Extra sample.
Reformat Numbered Lines
Removes numbering markers and prepends a custom prefix to each line using the provided format.
1- This is a sample. 2 - This is another sample. 3) Yet another sample. 4. Sample text.
Line: This is a sample. Line: This is another sample. Line: Yet another sample. Line: Sample text.