如何编写正则表达式来匹配不包含单词的字符串?

发布于 2024-09-07 10:28:14 字数 534 浏览 4 评论 0原文

可能的重复:
正则表达式匹配不包含单词的字符串?

为了不匹配一组字符,我会使用例如 [^\"\\r\\n]*

现在我想不匹配固定字符集,例如“|=”

换句话说,我想匹配:(不是 "、不是 \r、不是 \n、不是 |= )。

编辑:我正在尝试修改正则表达式来解析用分隔符分隔的数据。我从 a CSV 解析器 获得的单分隔符解决方案,但现在我想要将其扩展为包含多字符分隔符。我认为前瞻不起作用,因为我想使用匹配的字符,而不仅仅是断言和丢弃。

Possible Duplicate:
Regular expression to match string not containing a word?

To not match a set of characters I would use e.g. [^\"\\r\\n]*

Now I want to not match a fixed character set, e.g. "|="

In other words, I want to match: ( not ", not \r, not \n, and not |= ).

EDIT: I am trying to modify the regex for parsing data separated with delimiters. The single-delimiter solution I got form a CSV parser, but now I want to expand it to include multi-character delimiters. I do not think lookaheads will work, because I want to consume, not just assert and discard, the matching characters.

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

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

发布评论

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

评论(1

无妨# 2024-09-14 10:28:14

我发现,它应该是: ((?![\"\\r\\n]|[|][=]).)*

完整的正则表达式,从 CSV 解析器修改原始帖子中的链接将是: ((?((?![\"\\r\\n]|[|][=]).)*)|\"(? <字段>([^\"]|\"\")*)\")([|][=]|(?\\r\\n|\\n|$))< /code>

这将匹配任意数量的字符(不是 "、不是 \r、不是 \n 和不是 |= )或带引号的字符串,后跟( "|=" 或行尾)

I figured it out, it should be: ((?![\"\\r\\n]|[|][=]).)*

The full regex, modified from the CSV parser link in the original post, will be: ((?<field>((?![\"\\r\\n]|[|][=]).)*)|\"(?<field>([^\"]|\"\")*)\")([|][=]|(?<rowbreak>\\r\\n|\\n|$))

This will match any amount of characters of ( not ", not \r, not \n, and not |= ), or a quoted string, followed by ( "|=" or end of line )

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