c# 从正则表达式获取值
==============================baidu.+?wd=|baidu.+?word==============================以...
==============================
baidu.+?wd=|baidu.+?word
==============================
以上是百度搜索的URL
正则表达式如上,如果符合上面的正则表达式,那么如何获取 wd 或者word
关键字的值呢? 展开
baidu.+?wd=|baidu.+?word
==============================
以上是百度搜索的URL
正则表达式如上,如果符合上面的正则表达式,那么如何获取 wd 或者word
关键字的值呢? 展开
3个回答
展开全部
string oldstr = "baidu.+?wd=|baidu.+?word";
Regex rgx = new Regex(@".*?\?(?<temp1>\w+)\=.*?\?(?<temp2>\w+)", RegexOptions.Compiled);
string getstr1 = rgx.Match(oldstr).Result("${temp1}").ToString();
string getstr2 = rgx.Match(oldstr).Result("${temp2}").ToString();
TextBox2.Text = getstr1 + "\n" + getstr2;
Regex rgx = new Regex(@".*?\?(?<temp1>\w+)\=.*?\?(?<temp2>\w+)", RegexOptions.Compiled);
string getstr1 = rgx.Match(oldstr).Result("${temp1}").ToString();
string getstr2 = rgx.Match(oldstr).Result("${temp2}").ToString();
TextBox2.Text = getstr1 + "\n" + getstr2;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string oldstr = "baidu.+?wd=|baidu.+?word";
Regex rgx = new Regex(@".*?\?(?<temp1>\w+)\=.*?\?(?<temp2>\w+)", RegexOptions.Compiled);
string getstr1 = rgx.Match(oldstr).Result("${temp1}").ToString();
string getstr2 = rgx.Match(oldstr).Result("${temp2}").ToString();
TextBox2.Text = getstr1 + "\n" + getstr2;
希望对您有点帮助.
Regex rgx = new Regex(@".*?\?(?<temp1>\w+)\=.*?\?(?<temp2>\w+)", RegexOptions.Compiled);
string getstr1 = rgx.Match(oldstr).Result("${temp1}").ToString();
string getstr2 = rgx.Match(oldstr).Result("${temp2}").ToString();
TextBox2.Text = getstr1 + "\n" + getstr2;
希望对您有点帮助.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询