Dear Monks I have a textfile, and I want to sort it based on the value of the first set (each line have three sets separate by a space)
#My Input text file: dec.x.bc.00041669 1067503 1067501 dec.x.bc.00019580 1067503 1067501 dec.x.bc.00016113 1067503 1067501 #I want my Output textfile: dec.x.bc.00016113 1067503 1067501 dec.x.bc.00019580 1067503 1067501 dec.x.bc.00041669 1067503 1067501 #this is my code @filenames=@ARGV; foreach my $file (@filenames) { open (INFILE, $file) || die ("Can't open file $file$!"); chomp(my @resultArray = map { /^\s*$/ ? () : $_ } <INFILE>); open(OUTFILE, ">$file.formatted"); sort { $a<=>$b } @resultArray; print Dumper \@resultArray; foreach my $line(@resultArray){ my ($ID, $ans1, $ans2) = split( / /, $line ); #do something; print OUTFILE "$lineResults\n"; } close OUTFILE; }
I want to do something with a sorted array, and I guess after "I do something", each line will be copied in the output textfile already sorted eh? But is not sorting!
What is the problem?
Thanks

In reply to Sort textfile by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.