How can I create a regex expression that will match only letters with numbers?
I\'ve tried something like (?>[A-z]+)([a-z0-9]+).
(?>[A-z]+)([a-z0-9]+)
(?:\d+[a-z]|[a-z]+\d)[a-z\d]*
Basically, where 1 and a are any number and any letter, it matches 1a or a1, surrounded by any number of alphanumeric characters.
edit: shorter and probably faster now