我对 StackOverflow 很陌生
我有个问题:
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
但我得到了这个输出:
test string any value </b> <b>This Continue line here