0

Encoded

Line Sort
Order

About Line Sort

Line sort is a conversion that rearranges multi-line text line by line. It sorts each input line in either ascending, descending, or reverse order.

For ascending and descending, the strings of the entire line are compared in Unicode character order. For reverse, the content of the strings is not changed, only the order of the lines is inverted vertically.

For example, sorting the following text in ascending order:

banana
apple
orange

The conversion result is as follows:

apple
banana
orange
OrderDescriptionConversion Example
AscendingSorts in ascending order.apple, banana, orange
DescendingSorts in descending order.orange, banana, apple
ReverseInverts the order of the input lines vertically.orange, apple, banana

Uppercase and lowercase letters, numbers, symbols, etc., are compared as their respective Unicode characters. It is sorted as a string comparison, rather than the dictionary order of natural language or the size of numbers.