vote up 2 vote down star
1

Is there a equivalent on .net of the string parsing of Datejs ( http://www.datejs.com/ ) ?

I wanna do things like

// Convert text into Date
Date.parse(‘today’);
Date.parse(‘t + 5 d’); // today + 5 days
Date.parse(‘next thursday’);
Date.parse(‘February 20th 1973′);
Date.parse(‘Thu, 1 July 2004 22:30:00′);

Tks!

flag
One option is always using this inside your page and passing a correctly formatted date in the post back. – Chris Marisic Aug 6 at 17:09
Good question. I don't know a solution, and it can be very useful. – jpbochi Aug 6 at 17:10

2 Answers

vote up 2 vote down check

The closest thing in the framwork is DateTime.Parse and DateTime.TryParse. Unfortunately, these will only handle your last 2 cases, but the first 3 will not work.

There is no built-in way to do date manipulations using the standard DateTime parsing methods. However, this answer to a different question provides a utility class which will handle some of your other cases (or something similar), using regular expressions.

link|flag
Tks! That will do for me! – Alex Takitani Aug 6 at 17:35
vote up 0 vote down

As Reed mentions, there is nothing like this built into the .Net framework.

Microsoft JScript is a .Net language that can be used for server-side processing; you might look into seeing if you can integrate Datejs that way.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.