in reply to Re: Re: Newbie reg.exp question!in thread Newbie reg.exp question!
almost the same as above:
my($chars_nums) = $string =~ m{ ( [a-z]{2}\d{9} ) # capture 2 chars + 9 digits }ix; [download]