| [abcdefghijklmnopqrstuvwxyz]+[1234567890]+*
is a regular expression matching:
at least one lowercase character followed by at least one digit (an asterisk would mean any number of times, but I believe the syntax to be wrong (just [0-9]+* alone is like saying at least one digit any number of times). It will complain and not work correctly using PERL, written this way - with a message of nested quantifiers in regex.)
It can be written simply as /[a-z]+\d+/, without the asterisk, but it's not the right regular expression for the job. |