public static void main(String[] args) {
String file="ap a c h e-to m c a.t-6.0.36";
System.out.println(file);
//file.replaceAll("/(^\\s*)|(\\s*$)/g","");
file.replaceAll("-","");
System.out.println(file);
}
String file="ap a c h e-to m c a.t-6.0.36";
System.out.println(file);
//file.replaceAll("/(^\\s*)|(\\s*$)/g","");
// file.replaceAll("-","");
file=file.replaceAll("-",""); //你的replaceAll替换了后的新值要记住。
System.out.println(file); //这样就可以了。
}
结果:
ap a c h e-to m c a.t-6.0.36
ap a c h eto m c a.t6.0.36