remove double quotes from string kotlin

CSS
String x="\"abcd";
String z=x.replace("\"", "");
System.out.println(z);
Source

Also in CSS: