Suppose I have a string such as
"Let's split this string into many small ones"
and I want to split it on this, into and ones
such that the output looks something like this:
["Let's split", "this string", "into many small", "ones"]
What is the most efficient way to do it?
With a lookahead.