Help for this page

Select Code to Download


  1. or download this
    my $result;
    if( $aa =~ m/From:\s([^@]+)@/ ) {
        $result = $1;
        $result =~ s/\s</</g;
    }
    
  2. or download this
    my $result;
    if( $bb =~ m/UDP\s*([\d.]+);/ ) {
        $result = $1;
    }