Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to split certain text using JavaScript. 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!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
722 views
Welcome To Ask or Share your Answers For Others

1 Answer

Use a lookahead:

var split = journals.split(/(?=d+:)/);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...