Javascript Split: without losing character
Posted
by Rohan
on Stack Overflow
See other posts from Stack Overflow
or by Rohan
Published on 2010-06-15T16:39:59Z
Indexed on
2010/06/15
16:42 UTC
Read the original article
Hit count: 252
JavaScript
|split
I want to split certain text using JavaSscript. The text looks like:
9:30 pm
The user did action A.
10:30 pm
Welcome, user John Doe.
11:30 am
Messaged user John Doe
Now, I want to split the string into events. i.e.:
9:30 pm
The user did action A.
would be one event. I'm using RegEx for this:
var split = journals.split(/\d*\d:/);
Thing is, the first two characters are getting lost. The split appears like this:
30 pm
The user did action A.
How do I split so that the split maintains the first two/three characters (ie 9: or 10:) etc?
Thanks!
© Stack Overflow or respective owner