Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to specify a regex that finds if there are any non letter non number chars in a String.

Basically I want it to accept [a-z][A-Z][0-9] in any order any combination..i.e "2a4A44awA" should be valid.

How can I do this?

share|improve this question

2 Answers

up vote 7 down vote accepted

Instead of:

[a-z][A-Z][0-9] 

Match with:

[a-zA-Z0-9]+

From the API:

Greedy quantifiers
X?  X, once or not at all
X*  X, zero or more times
X+  X, one or more times
X{n}    X, exactly n times
X{n,}   X, at least n times
X{n,m}  X, at least n but not more than m times
share|improve this answer
Oh the plus is what i was missing....thanks... – mixkat Feb 18 '11 at 14:04
1  
@Mixkat, I edited by answer to include the list of Greedy Quantifiers. – jzd Feb 18 '11 at 14:05
String s = ".... ;

System.out.println(s.matches(".*[^a-zA-z0-9].*"));

returns true if illegal character is present.

Edit: But the first answer from jzd is better:

s.matches("[a-zA-Z0-9]+");

Returns true if illegal character not present, ie the string is good.

share|improve this answer
Thanks for the reply...the other answer is indeed simpler and works fine...well...thanks anyway – mixkat Feb 18 '11 at 14:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.