使用正则表达式查找除列出项目之外的字符
我被正则表达式困住了。我有大量的文本,其中充满了
`& , , <... e.t.c.`
我需要一个正则表达式,它将找到所有不属于所列项目的 &
-s。
I'm stuck on a regular expression. I have tons of text which is full of
`& , , <... e.t.c.`
I need a regexp which will find all &
-s that are not part of listed items.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有提到语言,但您可能会使用否定前瞻:
这应该需要照顾命名实体 (
π
) 和编号实体 ("
);You didn't mention the language, but you might use a negative lookahead:
This should take care of named entities (
π
) and numbered entities ("
);