I'm trying to find a form in HTML using Regex in Visual Basic .NET, though, there are different forms, and I want the one with certain attributes on it.
I want to find this one:
<form method="post"
While there are others looking like this:
<form method="get"
I already have the code for this, but my code cannot recognize where the first form ends and the next one starts, so I get this whole HTML script where the first form starts
<form>
And the last form ends
</form>
To understand better what I mean, check this out: http://rubular.com/r/HDU0yVFtIk