in reply to Re^4: word with some number in betweenin thread word with some number in between
Precisely. eg.
$ perl -e 'print "Matched.\n" if "foo8baz" =~ /[0-9]/;' Matched. $ perl -e 'print "Matched.\n" if "foobaz" =~ /[0-9]/;' [download]