in reply to Re: simple regexp problem
in thread simple regexp problem
D:\temp>perl -e "$x='a_b_c'; ($j, $k) = split /_/, $x; print $k" b D:\temp>perl -e "$x='a_b_c'; ($j, $k) = split /_/, $x, 2; print $k" b_c
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: simple regexp problem
by davidrw (Prior) on Dec 05, 2005 at 18:21 UTC |