Help for this page

Select Code to Download


  1. or download this
    return $str =~ m/\@([^.]+)/ ? $1 : '';
    
  2. or download this
    sub name {
        return $1 if $_[0] =~ /@([^.*])\./;
    }