黑马程序员技术交流社区

标题: 关于字符串的处理—正则 [打印本页]

作者: android2050    时间: 2013-3-19 19:31
标题: 关于字符串的处理—正则
本帖最后由 陈团辉 于 2013-3-20 08:43 编辑

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);
}





如上所示 为么输出的时候还是跟原来的一样呢?
作者: itserious    时间: 2013-3-19 23:20
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("-","");
                        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




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2