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
This is probably way too tricky (and probably not particularly efficient), but you can do this:
"Angry Birds 2.4.1".reverse.split(" ", 2).map(&:reverse).reverse