- or download this
# Doesn't handle embedded like-quotes
my $re_simpleQuoted = qr[
...
)
\1
]x;
- or download this
#! perl -slw
use strict;
...
unquoted stuff 'quoted 'stuff' with escaped \'like\' quotes' unquoted
+stuff
unquoted stuff "quoted stuff with embedded ""like"" quotes and escaped
+ \"like\" quotes" unquoted stuff
unquoted stuff 'quoted stuff with embedded ''like'' quotes and escaped
+ \'like\' quotes' unquoted stuff
- or download this
D:\Perl\test>quoted.pl8
unquoted stuff "quoted stuff" unquoted stuff
...
unquoted stuff 'quoted stuff with embedded ''like'' quotes and escaped
+ \'like\' quotes' unquoted stuff
<quoted stuff with embedded ''like'' quotes and escaped \'like
+\' quotes>