Sorry another update:
Is there a way to calculate the total number of terms altogether. I want this information to convey the information as a percentage.
print "$member can be found " . scalar(@{$family{$member}}) / ? . ": "
#!/usr/bin/perl
use Data::Dumper; # only for teaching purpose
$Data::Dumper::Indent = 1; # dito :-)
while(<DATA>) {
chop;
my($familyname,$memberstring) = split /\s--\s/,$_;
my @members = split /, /,$memberstring;
# tell each member that it's got a new family
foreach my $member(@members) {
push(@{$family{$member}},$familyname);
}
}
print Dumper(\%family); # show the data structure in %family
# now output a list of members with their families
foreach my $member(sort keys %family) {
print "$member can be found " . scalar(@{$family{$member}}) . ": "
. join(" ", @{$family{$member}}) . "\n";
}
Thank You. Genius. Some heavy PERLDOC reading tonight!!
Updated. Sorry about confusion with variable names.
Basically my data is subject to change but will follow a format as follows where I will have a unique "Family Name" followed by "--" followed by various "family members". The contents of the data are unknown to me apart from the format. Data is a text file.
Could consist of as follows:
FLINTSTONES=BARNEY, FRED, WILMA
JETSONS=MAX, TONY, WILMA
SIMPSONS=LISA, BARNEY, WILMA, HOMER
ALCATRAZ=ELIJAH, MAX, WILMA
I know I can grab this into an array called @Dopli. And split each line $unix at "--" into an array @trainer Is there a way of pushing each array into a hash using $trainer[0] and $trainer
1.
sub nice_list {
return '' if @_ == 0;
return shift if @_ == 1;
my $last = pop;
return join(', ', @_) . " and $last";
}
my $line;
my @data;
my @family;
my @members;
foreach $line (@data){
@family = split ('=', $line);
@members = split (',', $family[1]);
my %is_eaten_by = (
$family[0] => [ (@members) ],
);
foreach my $fruit (keys %is_eaten_by) {
my $eaters = $is_eaten_by{$fruit};
my $num_eaters = @$eaters;
print("$num_eaters ${fruit}: ",
(@$eaters), "\n");
}
}
Ultimately I am looking to print:
BARNEY can be found 2: FLINTSTONES SIMPSONS
FRED can be found 1: FLINTSTONES
WILMA can be found 4: FLINTSTONES JETSONS SIMPSONS ALCATRAZ
MAX can be found 2: JETSONS ALCATRAZ
and so forth...
At the moment am just getting what seems the number of terms of each array related to the key.
Thanks for any kind of help or advice.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.