I consider myself pretty good with Regular Expressions, but this one is appearing to be surprisingly tricky: I want to trim all whitespace, except the space character: ' '.
In Java, the RegEx I have tried is: [\s-[ ]], but this one also strips out ' '.
UPDATE:
Here is the particular string that I am attempting to strip spaces from:
project team manage key
Note: it would be the characters between "team" and "manage". They appear as a long space when editing this post but view as a single space in view mode.

project teammanage key? – CanSpice Feb 5 '11 at 0:53\sin Java doesn't cover all Unicode spaces, see my comment below and spreadsheets.google.com/pub?key=pd8dAQyHbdewRsnE5x5GzKQ – maaartinus Feb 5 '11 at 0:56