gpt4 book ai didi

c# - 字符串不应以 !或 = 正则表达式

转载 作者:行者123 更新时间:2023-11-30 19:57:24 26 4
gpt4 key购买 nike

我正在寻找一个不允许字符串以 '!' 开头的正则表达式或“=”。这是我目前的代码,其中我只添加了不起作用的“=”代码。

[RegularExpression("^(?!=)", ErrorMessageResourceName="Error_StringStartWith",      ErrorMessageResourceType= typeof(CommonStrings))]
public String FirstName { get; set; }

最佳答案

您正在寻找 (?![!=]).*

(?!                       // Negative lookahead
[!=] // Match either ! or = literal
)
.* // Match any token zero to unlimited times

@Rawling 向我指出,没有必要断言字符串的开头,所以我已将其删除。

关于c# - 字符串不应以 !或 = 正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30068292/

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