如何查询c#中输入的变量中是否包含特殊字符
展开全部
正则表达式....
若您知道正则表达式,应该就不会问这个问题~~,我介绍下介绍表达式
命名空间:System.Text.RegularExpressions
常规用法同,代码是微软的~:
Regex rx = new Regex(@"\b(?<word>\w+)\s+(\k<word>)\b",
RegexOptions.Compiled | RegexOptions.IgnoreCase);
string text = "The the quick brown fox fox jumped over the lazy dog dog."; MatchCollection matches = rx.Matches(text);
若您知道正则表达式,应该就不会问这个问题~~,我介绍下介绍表达式
命名空间:System.Text.RegularExpressions
常规用法同,代码是微软的~:
Regex rx = new Regex(@"\b(?<word>\w+)\s+(\k<word>)\b",
RegexOptions.Compiled | RegexOptions.IgnoreCase);
string text = "The the quick brown fox fox jumped over the lazy dog dog."; MatchCollection matches = rx.Matches(text);
展开全部
public static bool CheckString(string inputString)
{
Regex che = new Regex("^[A-Za-z0-9]+$");
Match result = che.Match(inputString);
if (result.Success)
{
return true;
}
else
return false;
}
{
Regex che = new Regex("^[A-Za-z0-9]+$");
Match result = che.Match(inputString);
if (result.Success)
{
return true;
}
else
return false;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
就用函数规定只能输入你想要的字符不就行了,或者用正则表达式,把你知道的都写上,有其他的你就拿出来
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
变量.content(“特殊字符”)是一种方法
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用正则
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询