Help for this page

Select Code to Download


  1. or download this
    >perl -le"'a'=~/(.)/; 'b'=~/c/; print $1"
    a
    
  2. or download this
    >perl -le"'a'=~/(.)/; 'b'=~/./; print $1"
    
    >perl -le"'a'=~/(.)/; 'b'=~/(.*?)/; print $1"