c# 用正则表达式得到指定的值

如字符串singfo.com/product/list63.html现需获得63这个值,如何写个函数过程,谢谢。list63并不固定只是两位数,也可能是list1,lis... 如字符串 singfo.com/product/list63.html
现需获得63这个值,如何写个函数过程,谢谢。
list63并不固定只是两位数,也可能是list1,list380,list6906等任意不同长度的数
展开
 我来答
abel_zhu
2012-02-08 · 超过22用户采纳过TA的回答
知道答主
回答量:90
采纳率:0%
帮助的人:56.5万
展开全部
string a = "singfo.com/product/list63.html";
string b = a.Substring(a.IndexOf("63"),"63".Length) .ToString();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
sniper2003
2012-02-13 · TA获得超过1882个赞
知道小有建树答主
回答量:775
采纳率:100%
帮助的人:663万
展开全部
public static int GetNum(string s)
{
Regex r = new Regex("(?<num>\\d+)\\.html");

Match m = r.Match(s);
if (m.Success)
{
return Convert.ToInt32(m.Groups["num"].Value);
}
throw new ArgumentException("没有匹配的数字!");
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
SH_ELa
2012-02-08
知道答主
回答量:2
采纳率:0%
帮助的人:3288
展开全部
substring(a,a.Indexof(b),b.Length)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Dserver
推荐于2016-05-06 · TA获得超过107个赞
知道答主
回答量:84
采纳率:0%
帮助的人:53.9万
展开全部
使用正则方法提取:
string strHTML = @"singfo.com/product/list63453.html";
string pattern = @"list\d*\.html$";
System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex(pattern, System.Text.RegularExpressions.RegexOptions.IgnoreCase);
string outString = "";
System.Text.RegularExpressions.MatchCollection mc = reg.Matches(strHTML);
if (mc.Count > 0)
{
foreach (System.Text.RegularExpressions.Match m in mc)
{
outString = m.Value.ToString();
}
}
outString = outString.Replace("list", "").Replace(".html", "");
MessageBox.Show(outString);
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
armandbyl
2012-02-08
知道答主
回答量:19
采纳率:100%
帮助的人:12.1万
展开全部
list前面的是固定的?
追答
public int GetListInt(string str) {
//singfo.com/product/ list
str = str.ToLower();
str = str.Substring(str.IndexOf("singfo.com"));
string str2 = "0";
if (str.Length > 28) {
str2= str.Substring(23, str.Length - 28);
int a = 0;
if (!int.TryParse(str2,out a)) {
str2 = "0";
}
}
return Convert.ToInt32(str2);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式