1

我有一个这样的字符串:

Dim value as string = "hy the number is (30.01)"

我怎样才能把这个数字 30.01 变成另一个变量?我正在考虑使用split,我如何使用来获得这个值谢谢

4

2 回答 2

4

使用正则表达式 (System.Text.RegularExpressions):

Dim m As Match = Regex.Match(value, "\((?<n>\d+\.\d{2})\)")
If m.Success Then
  Dim n As Decimal = Decimal.Parse(m.Groups("n").Value)
End If
于 2012-05-14T22:43:38.857 回答
3

如果您的格式将完全相同,您可以尝试像您提到的那样使用拆分。如果发生任何变化,这可能非常脆弱。

看看这是否适合你。

Dim result As Double
Dim value As String = "hy the number is (30.01)"
Dim subValue() As String = value.Split("(")
subValue(1) = subValue(1).TrimEnd(")")
If Not Double.TryParse(subValue(1), result) Then
    'Error handling code here
End If
于 2012-05-14T22:51:12.160 回答