So suppose I have this line:
print "Hello world!" out.txt
And I want to split it into:
print
"Hello world!"
out.txt
What would be the regular expression to match these?
Note that there must be a space between each of them. For example, if I had this:
print"Hello world!"out.txt
I would get:
print"Hello
world!"out.txt
The language I'm using is Haxe.