求助..字符串查数字的方式
Dim Str as String="测式12.32的方法"Dim reg As New System.Text.RegularExpressions.Regex("\d+")
Dim m As System.Text.RegularExpressions.Match = reg.Match(Str)
Dim xt As String = ""
If m.Success Then
xt = m.Value
End If
我查出来的方式只能取到12而取不到小数的位置
求助大哥些帮帮忙。