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 のタグを取得しようとしています。そのタグで、常に変数であるデータを取得したいと考えています。