Help for this page

Select Code to Download


  1. or download this
    # Doesn't handle embedded like-quotes
    my $re_simpleQuoted = qr[
    ...
        )
        \1
    ]x;
    
  2. 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
    
  3. 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>