Help for this page

Select Code to Download


  1. or download this
    my $e = '\\'   # kind of escape char
    my $s = '\'';  # this is a string to use for splitting
    ...
    }
    my $re = "(?<!\Q$e\E)\Q$s\E";
    $split_re = qr/$re/s;