So i've searched all of the internet, and i can't find a working solution to my problem.
I have a HTML table
<tr>something</tr>
<tr class="even detailed">Something</tr>
<tr class="odd detailed">something</tr>
// and so on
Now i will all the content of the tr's with and even or odd class. but i only get 1 result. my C# code is:
pattern = @"<tr class=""(even|odd) detailed"">(.*)</tr>";
var matches = Regex.Matches(Contents, pattern, RegexOptions.Singleline);
I've tried lots of things, but it doesn't seem to work. With this i only get 1 result.