how to remove quotations from a string in java code example
Example: remove double quotes from string kotlin
String x="\"abcd";
String z=x.replace("\"", "");
System.out.println(z);
String x="\"abcd";
String z=x.replace("\"", "");
System.out.println(z);