我必须删除\
从字符串中删除。
我的字符串是"SEPIMOCO EUROPE\119"
我试过了replace
,indexOf
但Pattern
我无法\
从这个字符串中删除它
String strconst="SEPIMOCO EUROPE\119";
System.out.println(strconst.replace("\\", " ")); // Gives SEPIMOCO EUROPE 9
System.out.println(strconst.replace("\\\\", " ")); // Gives SEPIMOCO EUROPE 9
System.out.println(strconst.indexOf("\\",0)); //Gives -1
有什么解决方案吗?