String userInput = "Hello, World! ssss1££$$%%##";
// String onlyAlphaNumeric = userInput.replaceAll("[^a-zA-
Z0-9]", "");
//only num
//String onlyAlphaNumeric = userInput.replaceAll("[^0-9]", "");
//num and alpabets
String onlyAlphaNumeric = userInput.replaceAll("[^a-zA- Z0-9]", "");
System.out.println( onlyAlphaNumeric);
// String onlyAlphaNumeric = userInput.replaceAll("[^a-zA-
//only num
//String onlyAlphaNumeric = userInput.replaceAll("[^0-9]", "");
//num and alpabets
String onlyAlphaNumeric = userInput.replaceAll("[^a-zA-
System.out.println(
No comments:
Post a Comment