I'm a little stumped on this one and I'm also not still on 1.8 so I don't have lookahead.
I have a bunch of strings which can look like:
"a/b/c/d/e/f 1/2/3"
which I want to turn into:
"a/b/c/d/e" "f" "1/2" "3"
So basically I want it to split by the last slash before the beginning of whitespace. I feel like I can do this normally but split always seems to do weird things.