Help for this page

Select Code to Download


  1. or download this
    my $regex1 = qr/(?:(?|(?:\")([^\\\"]*(?:\\.[^\\\"]*)*)(?:\")))/;
    my $regex2 = qq/(?:(?|(?:\")([^\\\"]*(?:\\.[^\\\"]*)*)(?:\")))/;
    
    print $regex1, "\n", qr/$regex2/, "\n";
    
  2. or download this
    (?^:(?:(?|(?:\")([^\\\"]*(?:\\.[^\\\"]*)*)(?:\"))))
    (?^:(?:(?|(?:")([^\"]*(?:\.[^\"]*)*)(?:"))))