vote up 1 vote down star

Hey folks,

This ought to be pretty simple, maybe use a regex but I would think there is an easier - faster way. Currently I make this work by using a couple of splits, but that sure seems like a poor method.

Example string:

on Jun 09, 2009. Tagged:

What I need to do is turn that date (June 09, 2009) into three strings (Jun, 09, 2009). Obviously this date may vary to things like May 25, 2011. I assume using the two outside strings which would be consistent ("on " and ". Tagged") and searching based on them is the best method. The month will always be three letters.

What would be a better way to do this via Javascript?

Thanks!

flag

67% accept rate
How fixed is the format? Will the month always be the fourth, fifth, and sixth characters? Will the date always be the eighth and ninth characters? Will the year always be the twelfth through fifteenth characters? – Nosredna Jun 24 at 5:40
Also, how do you want the strings returned? In an array? Like ["Jun","09","2009"]? – Nosredna Jun 24 at 5:42
No, the position of the date can move around and there is more to the string before the "on" and after the "tagged". The regex's shown below work well for finding the right data. I'd like to insert the three found string pieces into an array. – Chris Cooper Jun 24 at 5:53

2 Answers

vote up 3 vote down check

You could do it using substring commands, but a regex would be simpler and less prone to breaking if the source data ever changed.

You can use this regex:

 var input = "on Jun 09, 2009 Tagged:";
 var date = input.match(/([a-zA-Z]{3}) (\d{1,2}), (\d{4})/);
 // date = ["Jun 09, 2009", "Jun", "09", "2009"];
 var simpledate = date.slice(1);
 // simpledate = ["Jun", "09", "2009"];

When using RegEx's, I find this site to be extremely useful: http://www.regular-expressions.info/javascriptexample.html

It provides a JavaScript regex tester that's very handy! You can plug in same data and a regex and run it and see the matched data. It's helped me to understand regular expressions a lot better. For example, you can see that my regex and the other answers are different but accomplish the same thing.

link|flag
This works well unless the string is preceeded with another three letter character string. For example "This was posted on Jun 09, 2009 Tagged:". "was" becomes a problem. I should have noted that the string can slighly differ in the beginning/end though "on " always precedes the date and " Tagged:" always sits on its tail. – Chris Cooper Jun 24 at 6:06
I tested it with various words before the Jun and it works fine. The reason is that it's looking for three letters only if followed by two digits, so it should always match the date. – Chris Thompson Jun 24 at 6:14
You're absolutely right. Thanks so much! – Chris Cooper Jun 24 at 6:19
vote up 4 vote down

You could use a regular expression:

var match = str.match(/on (\w+) (\d{2}), (\d{4})\. Tagged/);
// match = ["on Jun 09, 2009. Tagged", "Jun", "09", "2009"]
link|flag
This works well but I think only when the string begins as "on". If it is extended a bit, as "Posted on Jun 09, 2009. Tagged:" - it doesn't appear to work. I should have explained the beginning/end of the string can vary, but the date is always preceded by "on ". – Chris Cooper Jun 24 at 6:03
It works for me: "Posted on Jun 09, 2009. Tagged:".match(/on (\w+) (\d{2}), (\d{4})\. Tagged/) returns the same result. – Gumbo Jun 24 at 6:33

Your Answer

Get an OpenID
or

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