I am doing a very simple task: parsing a website, looking for
<tbody>this is what important for me</tbody>`
and returning but I just cannot make it work. When I do:
Regex.Matches(webData, @"<tbody>(.*?)</tbody>")
it gives me no results. This, however, gives me 2 results:
Regex.Matches(webData, @"tbody")
but again, this
Regex.Matches(webData, @"tbody(.*?)tbody")
gives me nothing (so I assume escaping is not the problem). I found about (.*?)
at this page and I assumed it will be pretty easy to use, but I just cannot work it out.