EDIT: Not sure why but stack is inserting a huge space in between "div" and "class".
Regex 1:
<div class="mt">
GET TEXT HERE
<div class="bubble-arrow"></div>
my attmept:
Dim M As New System.Text.RegularExpressions.Regex("\s*<div class=""mt"">.*<div class=""bubble-arrow""></div>")
Regex 1 Note: this actually works if everything is on 1 row/without line 2 or 3.
Regex 2:
<label>Bo:</label>
<div class="value" title="GETLINE1TEXT
GETLINE2TEXT
GETLINE3TEXT">
my attempt:
Dim B As New System.Text.RegularExpressions.Regex("\s*<label>Bo:</label>\s*<div class=""value"" title="".*"">")