H hb Mar 19, 2004 #2 string numericString = "34235"; double doublevalue = Double.Parse(numericString);
H Herfried K. Wagner [MVP] Mar 19, 2004 #3 * "ruca said: How can I format a numeric string into a double? Click to expand... 'Double.Parse'.
C Cor Mar 20, 2004 #4 Hi Ruca, Some people love to give C++ answers instead of the cast answers. Dim numericString As String = "342,35" ' Or "342.45" as that is used in the current.globalization. Dim doublevalue As Double = CDbl(numericString) Cor
Hi Ruca, Some people love to give C++ answers instead of the cast answers. Dim numericString As String = "342,35" ' Or "342.45" as that is used in the current.globalization. Dim doublevalue As Double = CDbl(numericString) Cor