gpt4 book ai didi

java - Pattern.matches 与 string.matches ("regex")

转载 作者:行者123 更新时间:2023-11-30 06:09:50 25 4
gpt4 key购买 nike

什么是更好的性能:
string.matches("regex")
或者
Pattern.compile("regex").matches(string).find()

我指的是通过String.javamatches(),或者Pattern.java中的API进行匹配

最佳答案

String.matches(String regex) 的实现:

public boolean matches(String regex) {
return Pattern.matches(regex, this);
}

Pattern.matches(String regex, CharSequence input)的实现:

public static boolean matches(String regex, CharSequence input) {
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(input);
return m.matches();
}

结论 str.matches(regex)Pattern.compile(regex).matcher(str ).匹配().

注意:与matches()相同,与find()不同。

在以下情况下使用 Pattern.compile() 更好/需要:

  • 您需要访问 Matcher
    例如。你需要捕获组的结果。

  • 您多次调用相同的matches(regex)
    仅编译一次 regex 模式可提高性能。

关于java - Pattern.matches 与 string.matches ("regex"),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37171575/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com