SyntaxFix
Write A Post
Hire A Developer
Questions
Use replace method of string like the following way:
String x="\"abcd"; String z=x.replace("\"", ""); System.out.println(z);
Output:
abcd