I want to split the following string \"Good^Evening\" i used split option it is not split the value. please help me.
This is what I\'ve been trying:
try this
String str = "Good^Evening"; String newStr = str.replaceAll("[^]+", "");