Converts string in a specified style and culture-specific format to its 32-bit signed integer equivalent. : Convert from String « Data Types « VB.Net






Converts string in a specified style and culture-specific format to its 32-bit signed integer equivalent.

 

Imports System.Globalization

Module ParseInt32
   Public Sub Main()
      Convert("999,000", NumberStyles.Float Or NumberStyles.AllowThousands, New CultureInfo("en-GB"))      
      Convert("999,000", NumberStyles.Float Or NumberStyles.AllowThousands, New CultureInfo("fr-FR"))
      Convert("999,000", NumberStyles.Float, New CultureInfo("en-US"))
      Convert("999 999,00", NumberStyles.Float Or NumberStyles.AllowThousands, New CultureInfo("sv-SE")) 
      Convert("999,999.00", NumberStyles.Float Or NumberStyles.AllowThousands, NumberFormatInfo.InvariantInfo) 
      Convert("999,900", NumberStyles.Integer Or NumberStyles.AllowDecimalPoint, New CultureInfo("fr-FR"))
      Convert("999,900", NumberStyles.Integer Or NumberStyles.AllowDecimalPoint, New CultureInfo("en-US"))
      Convert("999,900", NumberStyles.Integer Or NumberStyles.AllowThousands, New CultureInfo("en-US"))
   End Sub

   Private Sub Convert(value As String, style As NumberStyles,provider As IFormatProvider)
      Try
         Dim number As Integer = Int32.Parse(value, style, provider)
         Console.WriteLine("Converted '{0}' to {1}.", value, number)
      Catch e As FormatException
         Console.WriteLine("Unable to convert '{0}'.", value)
      Catch e As OverflowException
         Console.WriteLine("'{0}' is out of range of the Int32 type.", value)   
      End Try
   End Sub                       
End Module

   
  








Related examples in the same category

1.DateTime TryParse: Assume current culture is en-US, and dates of the form: MMDDYYYY
2.TryParseExact: Use fr-FR culture.
3.Boolean TryParse
4.Char TryParse
5.Byte TryParse
6.Int16 TryParse
7.Int32 TryParse
8.Int64 TryParse
9.Decimal TryParse
10.Single TryParse
11.Double TryParse
12.Use the simple Double.TryParse overload, but specify an invalid value
13.SByte TryParse
14.UInt16 TryParse
15.UInt32 TryParse
16.UInt64 TryParse
17.Try to Parse DateTime by using different cultures
18.Parse value with trailing sign
19.Parse a string in exponential notation with only the AllowExponent flag
20.Parse a string in exponential notation with the AllowExponent and Number flags.
21.Parse a currency value with leading and trailing white space, and white space after the U.S. currency symbol.
22.Parse negative value with thousands separator and decimal.
23.Converts the numeric value of this instance to its equivalent string representation.
24.Parse a floating-point value with a currency symbol and a thousands separator.
25.Parse value in exponential notation.
26.Parse a negative integer number.
27.Parse string using "$" as the currency symbol for en-GB and en-us cultures
28.Parse a floating-point value with a thousands separator
29.Parse a floating-point value with a currency symbol and a thousands separator
30.Parse value in exponential notation
31.Parse currency value using en-GB culture
32.Parse String to Integer
33.Parse Hex String to Integer
34.Parse string to Integer
35.Parse Hex Number string to Integer
36.Converts string to 32-bit signed integer equivalent
37.Converts string in a specified style and culture-specific format to 32-bit signed integer