remove double quotes from string android kotlin 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);