Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Perl code error

by bikeNomad (Priest)
on Aug 14, 2001 at 03:57 UTC ( [id://104635]=note: print w/replies, xml ) Need Help??


in reply to Perl code error

The || is being parsed wrong; use another delimiter for your s///. Also you have a couple of typos past that. A corrected version could look like:

my @files = qw(quotePAGE1 quotePAGE2); for (@files) { open IN, $_ or die "failed opening file $_, at"; $\ = "\n\n"; my $num = 0; my($chunk,$q_num,%s_nums,%auth,@s,%subj); while($chunk = <IN>) { ++$num; $chunk =~ s|^/-a(\S+)[^/n]*\n|| or die "no author? file $_, chunk $num; at"; $a = $1; while($chunk =~ s{/-s(\S+)[^\n]*\n/-q((?:.|\n)+?(?=/-))}{}) { $q_num = 0; $auth{$a}->[$q_num] = $2; @s = split /,/,$1; for (@s) { (undef($s_nums{$_}) && $s_nums{$_} == 0) || ($s +_nums{$_} += 1) } $subj{$_}->[$s_nums{$_}] = $2 for @s; } } }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (2)
As of 2024-04-19 20:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found