Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    __END__
    NA12345 -> 12345
    67890 -> 67890
    
  2. or download this
    next unless $line =~ m{^(\S+) (\d+) (.*)};
    
  3. or download this
    use strict;
    use warnings;
    ...
    __END__
    matched: NA12345
    matched: 67890
    
  4. or download this
    use strict;
    use warnings;
    ...
    __END__
    [string1][NA12345][other stuff]
    [string2][67890][more stuff]