in reply to Re^2: bareword error
in thread bareword error
$ perl -le ' > $s1 = q{catDOGfish}; > $s2 = q{xxYYYzz}; > print $1 if $s1 =~ m{([A-Z]+)}; > print $1 if $s1 =~ m{([0-9]+)}; > print $1 if $s2 =~ m{};' DOG YYY $
Fancy not knowing that after all this time!
Thanks again,
JohnGG
|
---|