从亚马逊搜索中搜索产品评论#

时间:2015-12-15 16:01:01

标签: c# regex

我正在尝试使用正则表达式从搜索结果中提取产品的评论量。 https://goo.gl/hKdGyt

拉我的价格:

IWebElement firstResult = innerDriver.FindElementById(key);
string priceRegex = "\\$[0-9]+\\.[0-9]+";
string text = firstResult.Text;
Regex reg = new Regex(priceRegex);
price = reg.Match(text).ToString();

它有效,所以我尝试使用:

string rankRegex = "\\>[0-9]</a";
string text = firstResult.Text;
Regex reg = new Regex(priceRegex);
price = reg.Match(text).ToString();

提取评论数量,但它不会返回任何内容。

0 个答案:

没有答案