以至于条件匹配条件,除非是标签

发布于 2025-01-18 05:23:44 字数 575 浏览 0 评论 0原文

我正在尝试编写一个正则表达式语句来删除数字或包含数字的单词(仅当它们不是主题标签时)。我能够成功匹配包含数字的单词,但似乎无法编写忽略以主题标签开头的单词的条件。

这是我一直用来尝试找到解决方案的测试字符串:

今天发生的 bit mediacon #2022ppopcon 穿着 stell naman #sb19official 123 因为 h3llo 也是 12 或 23old

我需要一个正则表达式命令来捕获 123、h3llo、also12 和 23old 但忽略 #2022ppopcon 和 #sb19official 字符串。

我已经尝试过以下正则表达式语句。

(#\w+\d+\w*)|(\w+\d+\w*) 这成功捕获了组 1 中的主题标签和组 2 中的非主题标签,但我不知道如何使其仅选择组 2。

(? 这排除了主题标签之后的第一个字符,但仍然捕获主题标签字符串中的所有剩余字符。例如,在字符串 #2022ppopcan 中,它会忽略 #2 并捕获 022ppopcan。

I am trying to write a regex statement to remove digits or words that contain digits in them only if they are not a hashtag. I am able to succesfully match words that have digits in them, but cannot seem to write a condition that ignores words that begin with a hashtag.

Here is a test string that I have been using to try and find a solution:

happening bit mediacon #2022ppopcon wearing stell naman today #sb19official 123 because h3llo also12 or 23old

I need a regex command that will capture the 123, h3llo, also12 and 23old but ignore the #2022ppopcon and #sb19official strings.

I have tried the following regex statements.

(#\w+\d+\w*)|(\w+\d+\w*)
this succesfully captures the hashtags in group 1 and the non-hashtags in group 2, but I cannot figure out how to make it select group 2 only.

(?<!#)\w*\d+\w*
this excludes the first character after the hashtag but still captures all the remaining characters in the hashtag string. for example in the string #2022ppopcan, it ignores #2 and captures 022ppopcan.

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

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

发布评论

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

评论(1

花间憩 2025-01-25 05:23:44

您可以使用

(?<!\S)[^\W\d]*\d\w*
  • \ d与至少一个数字匹配
  • \ w*匹配可选单词chars

请参阅a Regex Demo

如果要允许部分匹配,则可以使用负面的lookhind来断言之后是一个单词边界:

(?<!#)\b[^\W\d]*\d\w*

请参阅另一个 Regex Demo

You might use

(?<!\S)[^\W\d]*\d\w*
  • (?<!\S) Assert a whitespace boundary to the left
  • [^\W\d]* Match optional word chars except a digit
  • \d Match at least a single digit
  • \w* Match optional word chars

See a regex demo.

If you want to allow a partial match, you can use a negative lookbehind to not assert a # followed by a word boundary:

(?<!#)\b[^\W\d]*\d\w*

See another regex demo.

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