我正在尝试使用正则表达式从搜索结果中提取产品的评论量。 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();
提取评论数量,但它不会返回任何内容。