To the point, how i can enable dotall flags on C# Regex ? And i have this regex.
string reg = "<table>.*</table>";
And for example, i regexed this html text
<table id="table1">
<table id="table2">
</table>
</table>
Where does my regex stop the match ? The first </table>
or the second </table>
Thanks guys.. :)