Here is a text file containing data I need to munge:
"ADELMAN","John","adad","Ray"
"AGAN","John","agag","Aditya"
"AHMED","John","ahah","Conor"
Here is a perl script to do some munging:
my $username;
my $color;
while(<>){
chomp;
s/"//g;
($username,$color) = (split /,/,$_)[2,3];
if ("agag" =~ m/($username)/){print STDOUT "here is the username:
+$username\n"}
}
Here is the output when I invoke
perl test.pl test.txt at the command line:
here is the username:
so note what's happening here: Evidently, the interpolation of the variable $username works just fine in the match
"agag" =~ m/($username)/. But then, $username get's treated as empty (uninitialized?) inside the call to print.
I'm totally stumped.
please help.
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.