美文网首页
String字符串替换

String字符串替换

作者: 寒冷de星空 | 来源:发表于2019-09-27 10:29 被阅读0次

    String tel = "18304072984";
    // 括号表示组,被替换的部分n表示第n组的内容 tel = tel.replaceAll("(\\d{3})\\d{4}(\\d{4})", "1****$2");
    System.out.print(tel); // output: 183****2984

    相关文章

      网友评论

          本文标题:String字符串替换

          本文链接:https://www.haomeiwen.com/subject/jwrdyctx.html