For example:
\"Angry Birds 2.4.1\".split(\" \", 2) => [\"Angry\", \"Birds 2.4.1\"]
How can I split the string into: [\"Angry Bir
[\"Angry Bir
Something like this maybe ? Split where a space is followed by anything but a space till the end of the string.
"Angry Birds 2.4.1".split(/ (?=\S+$)/) #=> ["Angry Birds", "2.4.1"]