Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Arithmatic operation in PERL

by lucs (Sexton)
on Nov 19, 2001 at 22:58 UTC ( [id://126342]=note: print w/replies, xml ) Need Help??


in reply to Arithmatic operation in PERL

Similar to davorg's (which is fine), but differing -- for demonstration purposes only -- in a few details, which are arguably obscure or inefficient. YMMV.
#!/usr/bin/perl -w use strict; # Slurp in the data, and place the records in an array. my @recs; {local $/; @recs = <DATA> =~ /(\*[^*]+)/g } # Collect info on each movie. my %movies; for (@recs) { s/Movie="([^"]+)" +show=(\d+)//; my ($movie, $show) = ($1, $2); my $tot = eval eval {join '+', grep $_ >= 20, /\d+/g}; @{$movies{$movie}}{qw(show tot)} = ($show, $tot); } # Print out the result. print "Movie Show Collection >= 20\n"; for (keys %movies) { printf "%-8s %4d %5d\n", $_, @{$movies{$_}}{qw(show tot)}; } __END__ * Movie="ABC" show=4 10 20 30 14 90 30 21 13 11 10 09 23 22 05 22 15 19 20 * Movie="XYZ" show=4 10 20 30 14 90 30 21 13 11 10 09 23 22 05 22 15 19 10

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (3)
As of 2024-04-25 23:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found