Help for this page

Select Code to Download


  1. or download this
    my @ar = (); # empty array
    while(<>){
    ...
       my ($name, $email) = split/\t/;
       print OUT qq(<a href="mailto:$email">$name</a><br />\n);
    }
    
  2. or download this
    while(<>){
       if(/<a href="(mailto:)?([^"]*)">([^<]*)<\/a>/){
    ...
          warn "Err: $_\n";
       }
    }