Requirement: String should contain only letters , numbers and space.
I have to pass a clean name to another API.
Implementation: Java
I came up with this for my requirement
public static String getCleanFilename(String filename) {
if (filename == null) {
return null;
}
return filename.replaceAll("[^A-Za-z0-9 ]","");
}
This works well for few of my testcase , but want to know am I missing any boundary conditions, or any better way (in performance) to do it.
"____". – Joachim Sauer Feb 14 '11 at 6:21\Wit contains underscore as well. see here download.oracle.com/javase/1.4.2/docs/api/java/util/regex/… – Nishant Feb 14 '11 at 6:24