show/hide this revision's text 4 added 1 characters in body
(\S|(?<=\\) )+

Explanation:

You are looking for either non white-space characters (\S) or a space preceded by a backslash, multiple times.

All matches will be saved to mach group 1, apply the pattern globally to get all matches in the string.

EDIT

Thinking about it, you would not even need capturing to a sub-group. The match alone will be enough, so this could be a tiny bit more efficient (the ?: switches to a non-capturing group):

(?:\S|(?<=\\) )+
show/hide this revision's text 3 changed to account for wrongly matching TAB characters
([^ ]|(?\S|(?<=\\) )+

Explanation:

You are looking for either a non-space non white-space characters(\S) or a space preceded by a backslash, multiple times.

All matches will be saved to mach group 1, apply the pattern globally to get all matches in the string.

EDIT

Thinking about it, you would not even need capturing to a sub-group. The match alone will be enough, so this could be a tiny bit more efficient (the ?: switches to a non-capturing group):

(?:[^ ]|(??:\S|(?<=\\) )+
show/hide this revision's text 2 added 270 characters in body
([^ ]|(?<=\\) )+

Explanation:

You are looking for either a non-space or a space preceded by a backslash, multiple times.

All matches will be saved to mach group 1, apply the pattern globally to get all matches in the string.

EDIT

Thinking about it, you would not even need capturing to a sub-group. The match alone will be enough, so this could be a tiny bit more efficient (the ?: switches to a non-capturing group):

(?:[^ ]|(?<=\\) )+
show/hide this revision's text 1