Help for this page

Select Code to Download


  1. or download this
    use strict;
    my $string="AB123456789this_code_is_untested";
    my $match=substr $string, 0, 11;
    
  2. or download this
    $string=~/^([a-zA-Z]{2}\d{9}).*/;
    print $1;