gpt4 book ai didi

regex - 正则表达式不以字符 A 或空格开头

转载 作者:行者123 更新时间:2023-12-04 14:29:17 26 4
gpt4 key购买 nike

关闭。这个问题需要details or clarity .它目前不接受答案。












想改善这个问题吗?通过 editing this post 添加详细信息并澄清问题.

6年前关闭。




Improve this question




我试过这个:^-|^(^(\W|A).)以破折号开头或不以空格或 A 开头。
但它不起作用,任何想法为什么?

最佳答案

regular expression doesn't start with character A or whitespace


^(?![A\s])

要匹配整个字符串,您需要添加 .*
^(?![A\s]).*

或者
^[^A\s].*

DEMO

字符串不以 A 开头或 Space还将匹配以连字符开头的字符串 - ,因此您无需为以连字符开头的字符串指定模式。

关于regex - 正则表达式不以字符 A 或空格开头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27266972/

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