Skip to content
Advertisement

How to split a complex sentence string, keeping the delimiter, but not also placing the demiiter where it shouldn’t be

I came across this snippet on Grepper:

JavaScript

It works fine for the example given. But if I split a sentence, this snippet will add the delimiter twice:

JavaScript

so I worked on it and came up with this, which works:

JavaScript

I’m wondering if there is a way to do this in more elegant way.

Advertisement

Answer

JavaScript

IMO, This is more readable than any one-line solution.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement