嗨,这是一个示例问题的一部分..我想知道这段代码到底是做什么的。
if (Pattern.compile(".*" + search + ".*", Pattern.CASE_INSENSITIVE).matcher(one).matches());
答案 0 :(得分:0)
这是Regular expression。基本上,代码是search
变量的文本中包含one
变量的内容的检查。
.*
表示'任意字符'(.
)'零次或多次'(*
),因此模式为search
被任意数量的任意字符包围