Displays the same value with a blank as the separator
Imports System
Imports System.Globalization
Class NumberFormatInfoSample
Public Shared Sub Main()
Dim nfi As NumberFormatInfo = New CultureInfo("en-US", False).NumberFormat
nfi.PercentGroupSeparator = " "
Dim myInt As [Double] = 0.1234
Console.WriteLine(myInt.ToString("P", nfi))
End Sub
End Class