Hi,
How to check one or more letter strings follow by two or more digit numbers.
If I have $line contains data:
new YOR CiTy 55
boston 66
I have the code below but it only checks from 1 to 3 letter strings but I want to check more than 3 letter strings. How can I do it?
$line !~ /^\s*([a-zA-Z]+)\s*([a-zA-Z]+)\s*([a-zA-Z]+)\s*\d{2,}$/)
Many thanks,
Tony