A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© android2050 中级黑马   /  2013-3-19 19:31  /  880 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 陈团辉 于 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);
}





如上所示 为么输出的时候还是跟原来的一样呢?

评分

参与人数 1技术分 +1 收起 理由
贾文泽 + 1

查看全部评分

1 个回复

倒序浏览
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

评分

参与人数 1技术分 +1 收起 理由
黄玉昆 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马