Help for this page

Select Code to Download


  1. or download this
    perl -e '$sep=chr(254);$s="85$sep"."mat\@com";($key,$email)=split($sep
    +,$s);print"$key\t$email\n";'
    
  2. or download this
    85      mat@com
    
  3. or download this
    perl -e '$s="85|mat\@com";$sep="\|"; ($key,$email)=split($sep,$s); pri
    +nt "$key\t$email\n";'
    
  4. or download this
    8       5
    
  5. or download this
    perl -e '$s="85|mat\@com";($key,$email)=split(/\|/,$s);print "$key\t$e
    +mail\n";'