Display string representations of numbers for en-us culture : CultureInfo I18N « Internationalization I18N « VB.Net






Display string representations of numbers for en-us culture

 

Option Strict On

Imports System.Globalization
Imports System.Threading

Module NumericFormats
   Public Sub Main()

      Dim ci As New CultureInfo("en-us")

      Dim floating As Double = 99999.123456
      Console.WriteLine("C: {0}",floating.ToString("C", ci))           
      Console.WriteLine("E: {0}",floating.ToString("E03", ci))         
      Console.WriteLine("F: {0}",floating.ToString("F04", ci))                  
      Console.WriteLine("G: {0}",floating.ToString("G", ci))           
      Console.WriteLine("N: {0}",floating.ToString("N03", ci))         
      Console.WriteLine("P: {0}",(floating/10000).ToString("P02", ci)) 
      Console.WriteLine("R: {0}",floating.ToString("R", ci))           
      Console.WriteLine()

      Dim integral As Integer = 8395
      Console.WriteLine("C: {0}",integral.ToString("C", ci))           
      Console.WriteLine("D: {0}",integral.ToString("D6"))              
      Console.WriteLine("E: {0}",integral.ToString("E03", ci))         
      Console.WriteLine("F: {0}",integral.ToString("F01", ci))             
      Console.WriteLine("G: {0}",integral.ToString("G", ci))           
      Console.WriteLine("N: {0}",integral.ToString("N01", ci))         
      Console.WriteLine("P: {0}",(integral/10000).ToString("P02", ci)) 
      Console.WriteLine("X: 0x{0}",integral.ToString("X", ci))         
      Console.WriteLine()
   End Sub
End Module

   
  








Related examples in the same category

1.List all Culture InformationList all Culture Information
2.String in Your LanguageString in Your Language
3.CurrentInfo for es-ES
4.Gets the culture types that pertain to the current CultureInfo object.
5.Gets the CultureInfo that represents the culture used by the current thread.
6.CultureInfo.DisplayName
7.whether the current CultureInfo represents a neutral culture.
8.Tells whether the current CultureInfo is read-only.
9.Gets the CultureInfo that represents the parent culture of the current CultureInfo.
10.Defines the types of culture lists that can be retrieved using the CultureInfo.GetCultures method.
11.Console fallback UI culture
12.Determines the specific cultures that use the Chinese language, and displays the parent culture
13.Comparing and Sorting Data for a Specific Culture
14.Gets the list of calendars that can be used by the culture.
15.Specific culture double value format