[Solved] Regex for specific html tag in C# [duplicate]


instead of using a regex using something like an xml parser may be more useful to your situation. Load it up into an xml document and then use something like SelectNodes to get out your data you are looking for

http://msdn.microsoft.com/en-us/library/4bektfx9.aspx

2

solved Regex for specific html tag in C# [duplicate]