Parse string to Date with g format and fr-FR culture : Date Time Parse « Date Time « VB.Net






Parse string to Date with g format and fr-FR culture

 
Imports System.Globalization

Module MainClass
   Public Sub Main()

        Dim dateString, format As String  
        Dim result As Date
        Dim provider As CultureInfo = CultureInfo.InvariantCulture

        
        dateString = "15/06/2010 08:30"
        format = "g"
        provider = New CultureInfo("fr-FR")
        Try
           result = Date.ParseExact(dateString, format, provider)
           Console.WriteLine("{0} converts to {1}.", dateString, result.ToString())
        Catch e As FormatException
           Console.WriteLine("{0} is not in the correct format.", dateString)
        End Try 
   End Sub
End Module

   
  








Related examples in the same category

1.Parse string to create new TimeSpan
2.Parse date with no style flags
3.Use custom formats with M and MM to parse a string to Date
4.Parse a string with time zone information
5.Parse a string represengting UTC
6.Parse the same date and time with the AssumeLocal style
7.Parse a date and time that is assumed to be local.
8.Parse String to Date with Invariant Culture
9.Parse string like '2/16/2008 12:15:12 PM' to Date
10.Call overload of Parse to convert string formatted according to conventions of fr-FR culture
11.Parse string with date but no time component
12.Parse a date and time with no styles
13.Parse the same date and time with the AssumeLocal style
14.Parse a date and time that is assumed to be local
15.Parse date-only value without leading zero in month using "d" format.
16.Parse date and time with custom specifier
17.Parse date and time with offset but without offset's minutes
18.Parse Date with different patterns
19.Parse String to Integer and catch OverflowException
20.Parse String to Date by using different culture format