Help for this page

Select Code to Download


  1. or download this
    1) foo and his friend bar
    2) Stuff and more (stuff)
    ...
    4) garbage (8)
    5) some other things
    6) (7lalala)
    
  2. or download this
    1) foo and his friend bar2) Stuff and more (stuff)3) More (and30) more
    + (and) more4) garbage (8)5) some other things6) (7lalala)
    
  3. or download this
    $text = reverse $copy;
    $text =~
    ...
        (?= [^()]* \) )
    /$1\n/gx;
    $text = reverse $text;
    
  4. or download this
    my $bal = # this is from perlre
    qr/
    ...
        (\d+)
        (?= \) )
    /$1\n$2/xg;
    
  5. or download this
    $text =~
    s/
    ...
        (?= \] )
    / strip_slash($1) /gex;
    sub strip_slash { $_=pop; s/\\//g; $_; }