作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个文本框,我只需要字母数字字符和一些标点符号; jsFiddle在这里,javascript 实现如下所示:
var TheCleanString = TheInput.replace(/(^\s+|[^a-zA-Z0-9 \\s\(\)\.\-]+)/g, '');
如您所见,这只允许字母数字字符,删除前导空格并允许括号、点和连字符。
现在我想使用 SAME 正则表达式来验证来自客户端的字符串是否通过了此正则表达式。我有这样的东西:
public bool MadeIt(TheCandidateString)
{
if (TheCandidateString passed this
regex /(^\s+|[^a-zA-Z0-9 \\s\(\)\.\-]+)/g
then return true)
}
执行此操作的最佳方法是什么?
谢谢。
最佳答案
public bool MadeIt(string TheCandidateString)
{
string regex= @"yourRegex";
var match = Regex.Match(TheCandidateString, regex, RegexOptions.IgnoreCase);
return match.Success;
}
关于c# - 从客户端正则表达式实现服务器端正则表达式验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21331466/
我是一名优秀的程序员,十分优秀!