- or download this
$str = 'ABC';
pos($str) = 1;
while (/.\G/g) {
print $&;
}
- or download this
use warnings;
$str = 'ABC';
...
while ($str=~/.\G/g) {
print $&;
}
- or download this
print pos($str); #line6
while ($str=~/.\G/g) {
print $&;
}
- or download this
use warnings;
$str = 'ABC';
...
while ($str=~/.\G/g) {
print $&;
}
- or download this
Use of uninitialized value in print at /home/lanx/B/PL/PM/re_escG.pl l
+ine 2.
Use of uninitialized value $& in print at /home/lanx/B/PL/PM/re_escG.p
+l line 5.