very hard regex extraction for me :( im trying toextract JOHNDIGEDY which is a variable
HTML String:
<a onclick="showPersona('persistentNation'); return false;" href=""><span>Welcome,</span>
JOHNDIGEDY
<span style="color: red;">(Unverified)</span>
any one help?
ive tryed
Dim Regex As New Regex("</span>\n\n"".*""\n<span style=", RegexOptions.Multiline)
For Each M As Match In Regex.Matches(data)
Dim Description As String = M.Value.Split("""").GetValue(0)
TextBox4.Text = Description
Next
And
Dim Regex As New Regex("</span>\r\n\r\n"".*""\r\n<span style=", RegexOptions.Multiline)
For Each M As Match In Regex.Matches(data)
Dim Description As String = M.Value.Split("""").GetValue(1)
TextBox4.Text = Description
Next
Any one shine any light on this please?