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

Categories

0 votes
718 views
in Technique[技术] by (71.8m points)

regex - JavaScript Split without losing character

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

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

1 Answer

0 votes
by (71.8m points)

Use a lookahead:

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...