码迷,mamicode.com
首页 > 编程语言 > 详细

Java笔试题(6)

时间:2018-09-23 13:40:14      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:笔试题   test   代码   div   笔试   pat   string   com   match   

String str = "my.test.";

String newStr = str.replaceAll(".", "/") + "end";

System.out.println(newStr);
  

输出结果?

我做的时候选的答案输出为   my/test/end

正确答案应为    ////////end

因为replaceAll第一个参数是正则表达式的字符串,"."在正则表达式中代表所有字符,下面为该方法的代码

public String replaceAll(String regex, String replacement) {
    return Pattern.compile(regex).matcher(this).replaceAll(replacement);
}

 

Java笔试题(6)

标签:笔试题   test   代码   div   笔试   pat   string   com   match   

原文地址:https://www.cnblogs.com/myibu/p/9692301.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!