Help for this page

Select Code to Download


  1. or download this
     ( $last, $first ) = ( $name =~ /^(.+),(.+)*/ );
    
  2. or download this
     ( $last, $first ) = ( $name =~ /^(\w+),\s*(\w+)*/ );
    
  3. or download this
    ($name, $firstname) = ($value=~/(.+),\s*(.+)*/);