使用Java匹配文本中的某些单词(模式)

发布于 2024-11-24 02:32:15 字数 250 浏览 1 评论 0原文

我收到一条短信。在文本中,有几个单词都以唯一标识符“KEY”开头,这些单词看起来像“KEY_1_This_is_a_key”。这些单词可以在一个句子中(“this is KEY_1_This_is_a_key 等”),可以用逗号分隔“KEY_1_This_is_a_key, KEY_2_This_is_a_key”,也可以在小括号之间“this is a (KEY_1_This_is_a_key)”。

有没有一种防弹方法来提取所有以“KEY”开头的单词? 提前致谢。

i have got a text. Within the text there are several words all beginning with a unique identifier "KEY" whereby the words look like this "KEY_1_This_is_a_key". The words can be within a sentence ("this is KEY_1_This_is_a_key etc"), can be comma separated "KEY_1_This_is_a_key, KEY_2_This_is_a_key" or between brakets "this is a (KEY_1_This_is_a_key)".

Is there a bullet proof way to extract all of the words beginning with "KEY"?
Thanks in advance.

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

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

发布评论

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

评论(1

乜一 2024-12-01 02:32:16
    String s = "KEY_1_This_is_a_key, KEY_2_This_is_a_key";

    Matcher m = Pattern.compile("\\b(KEY.+?)\\b").matcher(s);
    while(m.find()){
        System.out.println(m.group());
    }
    String s = "KEY_1_This_is_a_key, KEY_2_This_is_a_key";

    Matcher m = Pattern.compile("\\b(KEY.+?)\\b").matcher(s);
    while(m.find()){
        System.out.println(m.group());
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文