Sorting

Discussion in 'PHP' started by a4tech, Apr 12, 2013.

  1. #1
    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.???
     
    a4tech, Apr 12, 2013 IP
  2. ThePHPMaster

    ThePHPMaster Well-Known Member

    Messages:
    737
    Likes Received:
    52
    Best Answers:
    33
    Trophy Points:
    150
    #2
    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):
     
    ThePHPMaster, Apr 12, 2013 IP
  3. Nei

    Nei Well-Known Member

    Messages:
    106
    Likes Received:
    3
    Best Answers:
    1
    Trophy Points:
    170
    #3
    Maybe MS Excel will help in your issue (as far as I understood it).
     
    Nei, Apr 15, 2013 IP