在VB中有一个有效的方法来检查一个字符串是否可以转换为双精度?
我目前正在尝试将字符串转换为double,然后查看是否引发异常。但这似乎正在放缓我的申请。
Try ' if number then format it. current = CDbl(x) current = Math.Round(current,d) Return current Catch ex As System.InvalidCastException ' item is not a number,do not format... leave as a string Return x End Try
如果您使用的是.NET 1.1 / 2.0 / 3.0 / 3.5 / 4.0 / 4.5,请尝试查看Double.TryParse()
原文链接:https://www.f2er.com/vb/256010.html