3个回答
展开全部
string aa=" abcd6789@21cn.com";
方法1:aa.IndexOf ("b",1,);
方法2:有需要用正则表达式
string emailflag = "@";
if(Regex.Matches(aa,emailflag).Count)==0
方法1:aa.IndexOf ("b",1,);
方法2:有需要用正则表达式
string emailflag = "@";
if(Regex.Matches(aa,emailflag).Count)==0
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐于2018-03-10
展开全部
static int Count(string str, string constr)
{
return System.Text.RegularExpressions.Regex.Matches(str, constr).Count;
}
{
return System.Text.RegularExpressions.Regex.Matches(str, constr).Count;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询