Valid: abc abc11
Invalid: 11 a-b a&&b a << b a&b a->b
|
One regexp:
|
||||
|
This regexp should do the job: Mind you, this regex is potentially going to a significant amount of backtracking; it will be Or better still, don't use regexes at all and code match in simple Java:
For an N character String, this succeeds in |
||||
|
|
|
You need two regexes. One that checks it's only alphanumeric |
||||
|
|
if(containsAlphabet && containsAlphanumeric)? – Thilo Oct 11 '10 at 5:59