I am trying to scrap using system.net and regular expressions a web page that looks like in the picture in order to get info like Created By: see the picture!
Here is my code so far:
String html = web.DownloadString("https://..");
MatchCollection m1 = Regex.Matches(html, @"<div>\s*(.+?)\s*</div>", RegexOptions.Singleline);
foreach (Match m in m1)
{
string tarif = m.Groups[1].Value;
tarife.Add(tarif);
When I tried to inspect the element in Chrome it looks something like this:
How can i use regex to extract the name, anyone who can advise me?