Answers for "java code to skip the skip the special characters from array in java"

1

how to remove all special characters from a string in java

String str= "This#string%contains^special*characters&.";   
str = str.replaceAll("[^a-zA-Z0-9]", " ");  
System.out.println(str);  
Posted by: Guest on June-23-2020

Code answers related to "java code to skip the skip the special characters from array in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language