I'm trying to allow only certain words through a regexp filter in Java, i.e.:
Pattern p = Pattern.compile("^[a-zA-Z0-9\\s\\.-_]{1," + s.length() + "}$");
But I find that it allows through 140km/h because forward slash isn't handled. Ideally, this word should not be allowed.
Can anyone suggest a fix to my current version?
I'm new to regexp and don't particularly follow it fully yet.
The regexp is in a utils class method as follows:
public static boolean checkStringAlphaNumericChars(String s) {
s = s.trim();
if ((s == null) || (s.equals(""))) {
return false;
}
Pattern p = Pattern.compile("^[a-zA-Z0-9\\s\\.-_]{1," + s.length() + "}$");
// Pattern p = Pattern.compile("^[a-zA-Z0-9_\\s]{1," + s.length() + "}");
Matcher m = p.matcher(s);
if (m.matches()) {
return true;
}
else {
return false;
}
}
I want to allow strings with underscore, space, period, minus. And to ensure that strings with alpha numerics like 123.45 or -500.00 are accepted but where 5,000.00 is not.
{1," + s.length() + "}– NullUserException♦ Aug 27 '11 at 15:42\w? What are you specifying{1,? Why are you using the range of all code points from dot through underscore to specify those 49 code points? Why are you using the number of code units to specify code points? What do you do when those numbers mismatch? &c&c&c&c&c&die! What are you trying to do in plain English, since we’ll never figure it out from your pattrern? – tchrist Aug 27 '11 at 15:54match()method. It tests whether the input is completely matched by the regex. Using the line markers is useful when scanning progressively through a string withfind(). – erickson Aug 27 '11 at 15:59