以至于条件匹配条件,除非是标签
我正在尝试编写一个正则表达式语句来删除数字或包含数字的单词(仅当它们不是主题标签时)。我能够成功匹配包含数字的单词,但似乎无法编写忽略以主题标签开头的单词的条件。
这是我一直用来尝试找到解决方案的测试字符串:
今天发生的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
\ d
与至少一个数字匹配\ w*
匹配可选单词chars请参阅a Regex Demo 。
如果要允许部分匹配,则可以使用负面的lookhind来断言
#
之后是一个单词边界:请参阅另一个 Regex Demo 。
You might use
(?<!\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 charsSee 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:See another regex demo.