Split string for plus symbols (+)

user3413646 :

I would like to split a string "this is a string i++" into [this, is, a, string, i, ++].

I tried string.split("\\s|(?=\\+)") but it will give me [this, is, a, string, i, +, +].

May I know how I can keep the 2 plus symbols into one?