Java模式问题

发布于 2024-12-10 14:58:39 字数 437 浏览 1 评论 0原文

我从数据库中获取包含以下形式的字符串的文本

CO<sub>2</sub>

为了识别这一点,我编写了以下代码

String footText = "... some text containing CO<sub>2</sub>";
String co2HTML = "CO<sub>2</sub>";
Pattern pat = Pattern.compile(co2HTML);
Matcher mat = pat.matcher(footText);

final boolean hasCO2 = mat.matches();

问题是 hasCO2 始终为 false,尽管 inout 文本具有该子字符串。 有什么问题吗?

谢谢!

I am getting a text from the DB which contains Strings of the form

CO<sub>2</sub>

In order to recognize this I wrote the following code

String footText = "... some text containing CO<sub>2</sub>";
String co2HTML = "CO<sub>2</sub>";
Pattern pat = Pattern.compile(co2HTML);
Matcher mat = pat.matcher(footText);

final boolean hasCO2 = mat.matches();

The problem is that hasCO2 is always false although the inout text has that substring.
What is wrong hete?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

街角迷惘 2024-12-17 14:58:39

您应该使用 find() 而不是 matches(),因为后者尝试将整个字符串与模式进行匹配,而不是执行搜索。

来自 Javadoc

  • matches 方法尝试将整个输入序列与模式进行匹配。
  • lookingAt 方法尝试从头开始根据模式匹配输入序列。
  • find 方法扫描输入序列,查找与模式匹配的下一个子序列。

此外,所讨论的模式实际上并不需要正则表达式;而是需要正则表达式。您可以使用 String.indexOf() 执行搜索。

You should use find() instead of matches(), since the latter tries to match the entire string against the pattern rather than perform a search.

From the Javadoc:

  • The matches method attempts to match the entire input sequence against the pattern.
  • The lookingAt method attempts to match the input sequence, starting at the beginning, against the pattern.
  • The find method scans the input sequence looking for the next subsequence that matches the pattern.

Also, the pattern in question doesn't really require regular expressions; you could use String.indexOf() to perform the search.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文