M
Matija Papec
How can one know the difference between $arr[0] and $arr[1]?
eg.
my @arr = ('^match') x 2;
$_ = qr/$_/ for $arr[0];
I wouldn't want to do $_ = qr/$_/ twice on same regex (I guess it's time
consuming?)
eg.
my @arr = ('^match') x 2;
$_ = qr/$_/ for $arr[0];
I wouldn't want to do $_ = qr/$_/ twice on same regex (I guess it's time
consuming?)