converting hebrew to gregorian date

  • Thread starter Thread starter Guest
  • Start date Start date
Pelegk1,

I do not think it is possible to convert the actual Hebrew string "?"? ???
???"?" to a date. You would need the integral representation of the date,
something parsable by the DateTime type.

If you have the date in this format, try using the opposite of what you have
already:

Dim jewishCulture As CultureInfo =
CultureInfo.CreateSpecificCulture("he-IL")
jewishCulture.DateTimeFormat.Calendar = New HebrewCalendar
Dim dt As DateTime = DateTime.Parse(<date time here>,
jewishCulture.DateTimeFormat)

Hope this helps,


Steve
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top