- or download this
use strict;
use warnings;
...
[\"isnt]
[unnice.\"]
- or download this
my $quoted = qr/
(?:(?|
...
)
/x;
- or download this
my $quoted = qr/
(?:(?|
...
(?:(?:[^\\\' ]*(?:\\[^ ][^\\\' ]*)*)\')(?:[^\\\']*(?:\\.[^\\\']*)*
+)(?:\'|$)
))
/x;
- or download this
my $quoted = qr/
(?:(?|
...
# and later:
my $got = [ split $re, $str ];