Help for this page

Select Code to Download


  1. or download this
    my $pat = <<'PATTERNEND';
    \s
    PATTERNEND
    
  2. or download this
    my $pat = <<PATTERNEND;
    \\s
    PATTERNEND
    
  3. or download this
    my $pat = <<"PATTERNEND";
    \\s
    PATTERNEND
    
  4. or download this
    my $re = qr/
    \s
    /x;