Tested tool guide
Text and writing tools
Checked August 16, 2026
What Advanced Text Line Sorter does, with a checked example
Alphabetical sorting compares strings character by character, so a list of numbers comes out 10, 100, 20 rather than 10, 20, 100. This sorter adds modes that fix that: numeric sorting compares values, length sorting compares character counts, and column sorting picks one field out of delimited lines such as CSV or tab-separated data. Reverse flips any mode, and case sensitivity is a separate toggle. The surprise most users hit: alphabetical order is decided by the first differing character, so 10 still precedes 9 unless numeric mode is on, and with case-sensitive sorting a word that starts with an uppercase letter can jump ahead of lowercase words.
Worked example
A concrete input and expected output from the current implementation.
Input
orange
banana
apple
kiwi
->
Expected output
apple
banana
kiwi
orange
Every line starts with a distinct letter, so alphabetical ascending is decided by the first character alone: a, b, k, o. All lines are lowercase, so the case-sensitive option does not change this result.