How to convert float string with comma (e.g. "3,14") to float number (3.14) in VB.NET

1 Answer

0 votes
Imports System
Imports System.Globalization

Public Class ConvertFloatStringWithCommaFloat_VB_NET
	Public Shared Sub Main(ByVal args As String())
    	Const s As String = "3,14"
        
		Dim f = Single.Parse(s, NumberStyles.AllowDecimalPoint, CultureInfo.GetCultureInfo("nl-NL"))
        
		Console.WriteLine(f)
    End Sub
End Class


' run:
'
' 3.14
'

 



answered Nov 8, 2024 by avibootz
...