I have this regular expression that extracts meta tags from HTML documents but it gives me errors while I incorporate it in my web application.
the expression is
@"<meta[\\s]+[^>]*?name[\\s]?=[\\s\"\']+(.*?)[\\s\"\']+content[\\s]?=[\\s\"\']+(.*?)[\"\']+.*?>" ;
is there anything wrong with it?