Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 TinyTinyRSS,并希望使用支持正则表达式的已实现过滤器功能来组织我的文章。通常,我会筛选出类似的单词,star然后找到包含star的所有内容。但我也想排除某些词,如started, starshineor seastar。
star
started, starshine
seastar
Fi,我的 Google 查询如下所示:star -started|starshine|seastar
star -started|starshine|seastar
那么 RegExp 中合适的命令是什么?
提前致谢!
您可以使用单词边界:
\bstar\b
将寻找“星”这个词而不是其他任何东西,这意味着什么都不像custardor stars。
custard
stars
如果您想避免只匹配那些并且如果您使用的是完全支持环视的正则表达式引擎,您可以使用:
(?<!sea)star(?!ted|shine)