Help for this page

Select Code to Download


  1. or download this
    print "$+{first} $+{last}\n" 
        if m/^
    ...
            (?<first>   [^%]+ ) %
            (?<id>    A [^%]+ )
           /x;
    
  2. or download this
    print "$2 $1\n"
        if m/^([^%]+)%([^%]+)%(A[^%]+)/;