how do i use regular expressions to look for '\w{2,5}' but not have the result be a number by itself
i would want to match
letter number combinations)
abc1a
1abcd
abcde
1234a
a4bcd
but not
any integer without a letter)
12345
123
12
22222
any help will be greatly appreciated
thanks
keith
i would want to match
abc1a
1abcd
abcde
1234a
a4bcd
but not
12345
123
12
22222
any help will be greatly appreciated
thanks
keith