Help for this page

Select Code to Download


  1. or download this
    my $string = qq|sean\@gmail.com, "richard" <richard\@gmail.com>, "john
    +" <john\@gmail.com>, <jack\@gmail.com>|;
    
  2. or download this
     my @email = split(/\,/,$string);
     for my $var( 0 .. $#email )
     {    print "$email[$var]\n";
          .....   # put additional code here 
     }