Hi, I am looking for a tool or program that can sort the lines by word. MS word did not work. For example in a line contain "Hello World" it check in all the lines and put up to those lines to the above and sort the lines according to words not ascending or descending. How to do this? Is there any program or can use notepad++ for this kind of purpose.???
I am not sure I understood what you meant 100%, but here is my attempt at a solution using PHP: $data = explode(PHP_EOL, file_get_contents('file.txt')); sort($data, SORT_NATURAL | SORT_STRING); file_put_contents('file_sorted.txt', implode(PHP_EOL, $data)); Code (markup):