我试图在 html 的某些文本之间获取一个值,到目前为止还没有成功,我不能使用 html agility pack,因为它提供的数据只存在于 html 标签之间
public static string[] split_comments(string html)
{
html = html.ToLower();
html = html.Replace(@""""," ");
html 中的实际行是这样的
//<meta itemprop="rating" content="4.7"> the 4.7 value changes every time and I need to get this value
Match match = Regex.Match(html, @"<meta itemprop=rating content=([A-Za-z0-9\-]+)\>$");
if (match.Success)
{
// Finally, we get the Group value and display it.
string key = match.Groups[1].Value;
}
所以我正在尝试获取一个 html 标记,并且在该标记中我希望获取始终可变的数据。