- or download this
/^"( [^\\"]+ | \\+[^\\"] | (\\\\)*\\" )*"$/x
- or download this
/^"( [^\"]+ | \+[^\"] | (\\)*\" )*"$/x
- or download this
C:\> perl -le"print for @ARGV" hi "hi" "\"hi\"" "\\hi\\" "\\hi\\\""
hi
...
"hi"
\\hi\
\\hi\"
- or download this
C:\> perl -le"print for @ARGV" "6""5'"
6"5'
...
my
little
friend