in reply to Re^2: Extracting multiple match and reorganizing order with Regex
in thread Extracting multiple match and reorganizing order with Regex
q{}, as mentioned in perlop, is a single-quoted string, in this case an empty one. It's the same as saying $_ ne '', and similar to $_ !~ /^$/.
|
|---|