Help for this page

Select Code to Download


  1. or download this
    my $empl_name = shift;
    my ($last, $first) = $empl_name=~/^([^,]+), (.+)/ or return undef;
    
  2. or download this
    my ($last, $first) = /(.*), (.*)/ or return undef;