Converts Integer to string using the specified format and culture-specific format information. : Integer Format « Data Types « VB.Net






Converts Integer to string using the specified format and culture-specific format information.

 
Imports System
Imports Microsoft.VisualBasic
Imports System.Globalization
Module MainClass

    Sub Main( )
        Dim cultures() As CultureInfo = {CultureInfo.CreateSpecificCulture("en-US"), _
                                         CultureInfo.CreateSpecificCulture("fr-FR"), _
                                         CultureInfo.CreateSpecificCulture("es-ES") }
        Dim positiveNumber As Integer = 9999
        Dim negativeNumber As Integer = -9999
        Dim specifiers() As String = {"G", "C", "D8", "E2", "F", "N", "P", "X8"} 
        
        For Each specifier As String In specifiers
           For Each culture As CultureInfo In Cultures
              Console.WriteLine("{0} format using {1} culture: {2, 16} {3, 16}", _ 
                                specifier, culture.Name, _
                                positiveNumber.ToString(specifier, culture), _
                                negativeNumber.ToString(specifier, culture))
        
           Next
           Console.WriteLine()
        Next
    End Sub 
End Module

   
  








Related examples in the same category

1.Integer format: N1
2.Integer format: x
3.Integer format: X
4.Integer format: X8
5.Large Integer format: X
6.Hex integer format: X2
7.CultureInfo("en-us") and Integer format: C
8.CultureInfo("en-us") and Integer format: D6
9.CultureInfo("en-us") and Integer format: E03
10.CultureInfo("en-us") and Integer format: F01
11.CultureInfo("en-us") and Integer format: G
12.CultureInfo("en-us") and Integer format: N01
13.CultureInfo("en-us") and Integer format: P02
14.CultureInfo("en-us") and Integer format: X
15.Standard Numeric Format Strings for negative value: D
16.Standard Numeric Format Strings for positive value: D8
17.Standard Numeric Format Strings: F3
18.Display value using default formatting
19.Display value with 3 digits and leading zeros
20.Display value with 1 decimal digit
21.Display value as hexadecimal
22.Display value with eight hexadecimal digits
23.Display Integer Value in Binary Octal and Hex forms
24.Converts Integer to string using the specified culture-specific format information.
25.Converts Integer to string using the specified format.
26.Converts Integer to string representation.
27.Convert Integer to String: D3, N1, X2, X8
28.Convert Integer to its Binary, Octal, Hex forms
29.Display value using default formatting
30.Display value with 3 digits and leading zeros
31.Display value with 1 decimal digit