sure you chose imdb_com
//html = html code of the imdb page.
private string IMDBPlotOutline(string html)
{
GroupCollection regMatch = Regex.Match(html, @"<h5>(?:Plot Outline:|Plot Summary:|Plot:)</h5>\s*(.*?)\s*<").Groups;
if (regMatch.Count > 1)
{
return regMatch[1].Value.ToString();
}
else
{
return string.Empty;
}
}