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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 果蝇 中级黑马   /  2015-9-10 22:35  /  250 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


/*
        替换功能  
        public String replaceAll(String regex,String replacement)
       
                B:案例演示
                论坛发表帖子,帖子中需要将数字替换为"*"
        帖子: "我的电话号是12323345345,邮箱是43534@qq.com";
                String regex ="\\d";
               
        "我的电话号是12323345345,邮箱是43534@qq.com".replaceAll(regex,"*");
       
*/

public class RegexDemo6 {
         public static void main(String[] args) {
               
//                 
//                 fun1();
                 String text = "我的电话号是12323345345,邮箱是43534@qq.com";
                 
                 //定义 规则
                 String regex = "\\d";
                 
                 String replaceText= text.replaceAll(regex, "*");
                 
                 System.out.println(text);
                 System.out.println(replaceText);
                 
        }

        private static void fun1() {
                String s  = "itcast";
                 String rs = s.replaceAll("[abc]", "xxxx ");
                 System.out.println(s);
                 System.out.println(rs);
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马