gpt4 book ai didi

正则表达式空白单词边界

转载 作者:行者123 更新时间:2023-12-01 18:12:28 29 4
gpt4 key购买 nike

我有这个表情

\b[A-Za-z]+\b

如果我给出 abc@de mnop,它会匹配 abcdemnop,但我想要它只匹配mnop。我怎样才能做到这一点?

最佳答案

\b 是字边界。

因此,\b类似于[^a-zA-Z0-9_],即\b检查 用于除 word

之外的任何内容

您可以使用此正则表达式

(?<=\s|^)[a-zA-Z]+(?=\s|$)
-------- --------- ------
| | |->match only if the pattern is followed by a space(\s) or end of string/line($)
| |->pattern
|->match only if the pattern is preceded by space(\s) or start of string\line(^)

关于正则表达式空白单词边界,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60441299/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com