如何将数字与句子分开?
Z 90.00000
或
47540.00000
答案 0 :(得分:1)
您可以使用下面的正则表达式:
Dim regex As Regex = New Regex("\d+\.\d+")
Dim match As Match = regex.Match("Z 90.00000")
If match.Success Then
Console.WriteLine(match.Value)
这是一个包含优秀RegEx教程和参考资料的网站: