I'm very new to StackOverflow
I have a problem:
Dim sample As String = "<b>test string any value </b> <b>This Continue line here </b>"
Dim ra As New Regex("<b>(.*)</b>")
Dim m As Match = ra.Match(sample)
If m.Success Then
MsgBox(m.Groups(1).Value)
End If
But I got this output:
test string any value </b> <b>This Continue line here