I need to remove singles spaces from a string but not double spaces.
Using regex I've tried this, however it is invalid and I'm not sure how to fix it:
\s+{1,1}
This is what I want to achieve:
Raw string:
"Okay, let ’s get star ted, Bret t "
After regex replace (keeping the double spacing):
"Okay, let’s get started, Brett"