Help for this page

Select Code to Download


  1. or download this
    while(<FILE>) {        ## assign $_ to readline *FILE
    my $message = <FILE>;  ## assign my $message to readline *FILE
    
  2. or download this
    while(my $message = <FILE>) {
      print "$1: $2<br/>"
        if $message =~ /^(Alberta226: )([a-zA-Z, 0-9]+)/; # I added the +
    }