验证字符串在 C# 中的格式是否有效?
如何检查字符串是否有效(仅限字母数字值)以及
string does not "CompanyName"
string does not contain ban keywords
string does not contain spaces or return or tabs
string does not contain special characters
How to check if string is valid (Alphanumerical values only) and
string does not "CompanyName"
string does not contain ban keywords
string does not contain spaces or return or tabs
string does not contain special characters
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为这显然是自定义验证的一个例子。首先,使用正则表达式检查字母数字字符(如果检查通过,则它将不包含空格、制表符或回车符或特殊字符)。然后检查您的禁令关键字。若发现断线则返回失败。
I think this is clearly a case for custom validation. First, check for alphanumeric characters using a regex (if that check passes, it won't contain spaces, tabs or returns or special characters). Then go through your ban keywords. If one is found break and return failure.
类似的东西应该检查字母数字值,不确定它是否是最好的方法
,而不是一些自定义验证
something like that should check for Alphanumerical values not sure if it the best way
and than some custom validation