Does anyone know of a .NET date/time parser similar to Chronic for Ruby (handles stuff like "tomorrow" or "3pm next thursday")?
Note: I do write Ruby (which is how I know about Chronic) but this project must use .NET.
|
5
|
Does anyone know of a .NET date/time parser similar to Chronic for Ruby (handles stuff like "tomorrow" or "3pm next thursday")? Note: I do write Ruby (which is how I know about Chronic) but this project must use .NET.
|
||
|
|
|
|
I don't, but there's a Java port called jchronic. If nothing else, it could provide a good jumping-off point for your own. Or perhaps you could use a semi-automatic Java to C# translator like Octopus to help translate it. (Or something better, if anyone knows of anything.) Okay, another possible avenue: could you use the chronic code using IronRuby? |
|||
|
|
|
|
We developed exactly what you are looking for on an internal project. We are thinking of making this public if there is sufficient need for it. Take a look at this blog for more details: http://precisionsoftwaredesign.com/blog.php. Feel free to contact me if you are interested: contact@precisionsoftware.us |
||
|
|
|
|
@ Burton: I think he meant the other way, at least from the example on the linked page:
I thought I would take a stab at it too until I realized! (nice implementation though) |
||
|
|
|
|
@Blair Conrad - Good ideas! I tried to get Chronic running under IronRuby but had some problems with dependencies - I don't know that it's ready yet. I found a project on Codeplex (DateTimeEnglishParser) that is attempting to do the same thing. It doesn't handle years or time yet, but it's a good start. I've worked on the project a little and contributed a patch to better handle written numbers. It's an interesting problem, and has definitely helped me understand regular expressions better, so I think I'll keep working on it. |
||
|
|
|
|
Palmsey, I have just recently had the same requirment so I went ahead and wrote a simple parser. Its not the nicest code but it will handle things like: "Today at 2pm" "Tuesday at 2pm - 15th july 2010 at 2am" "Previous Year at 2am - Tommorow at 14:30" "18th july 2010 at 2:45pm" Stuck it on codeplex as maybe someone else will find it useful. Check it out: http://timestamper.codeplex.com/ |
||
|
|
|
|
I'm not aware of one, but it sounded like a cool problem, so here's my whack at it (VB.NET):
It's really not as sophisticated as ones that already exist, but it works alright I guess. Could be a nice extension method. |
|||
|
|
|
|
There was a similar thread earlier and it gave a link to a library on CodeProject that seems to do what you want: http://www.codeproject.com/KB/edit/dateparser.aspx but unfortunately the library seems to be written in MFC so you would have to make a DLL out of it and then call it from your .NET program. |
||
|
|