使用
String#replace(CharSequence,CharSequence)。
String input = "this string ""has"" double quotes";String output = input.replace("""", """);
http://ideone.com/xPQqL
欢迎分享,转载请注明来源:内存溢出
使用
String#replace(CharSequence,CharSequence)。
String input = "this string ""has"" double quotes";String output = input.replace("""", """);
http://ideone.com/xPQqL
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)