Supprimer les doubles citations de String Kotlin

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