Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^6: String sorting in Perl

by markdavis87 (Novice)
on Jun 04, 2014 at 18:54 UTC ( [id://1088721]=note: print w/replies, xml ) Need Help??


in reply to Re^5: String sorting in Perl
in thread String sorting in Perl

Thanks! I think it should be "count_hash" instead of "hash_count", though. Before I read your post, I worked out this solution:

#!/usr/bin/perl -w use strict; my $file = "path to my file"; open (FH, "< $file") or die "Can't open $file for read: $!"; my @data = <FH>; close FH or die "Cannot close $file: $!"; my %count_hash; for my $line (@data) { $count_hash{$line} ++; } for my $line (sort { length $a <=> length $b || $count_hash{$b} <=> $c +ount_hash{$a}} keys %count_hash) { print "$line\t$count_hash{$line}\n"; }

The only thing I see is that it seems to carry over the line break with each line, so the count ends up being on a new line, tabbed over. Is there a way to have it look for a line break and remove it before it prints>

Replies are listed 'Best First'.
Re^7: String sorting in Perl
by Laurent_R (Canon) on Jun 04, 2014 at 19:06 UTC
    Change the last lines to:
    for my $line (sort { length $a <=> length $b || $count_hash{$b} <=> $c +ount_hash{$a}} keys %count_hash) { chomp $line; print "$line\t$count_hash{$line}\n"; }
    (Or you also could chomp the data before.)

      Haha, that's exactly what I did before I read your post. Thanks for all the help! I really appreciate it.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1088721]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (5)
As of 2024-04-18 15:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found