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.
有人可以为此使用单行正则表达式帮助我吗?
目前使用:
^(?!C).*
但需要一个替代方案,因为它不适用于我的系统。
干杯!
你可以使用这个:
^(?i)[^c].*
(?i)代表不区分大小写,但您可以使用它来代替:
(?i)
^[^cC].*
或 javascript 样式:
/^[^c].*/i
这可以满足您的需求:
^(?:[^cC].*)?$
这将匹配空字符串(由于部分)或不以nor(?:...)?开头的字符串。cC
(?:...)?
c
C