Using a regex, how can I remove whitespace greater that 1 char in lines of text using WildEdit.
in: The quick brown fox.
out: The quick brown fox.
Remove white space from text
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
- s_reynisson
- Posts: 939
- Joined: Tue May 06, 2003 1:59 pm
To post text "as is" you can use the Code tagFind \s+
Replace with X
where X=space
using Regular expression and Replacement format - HTH
Code: Select all
in: The quick brown fox.
out: The quick brown fox.
Replace with X
where X=space
using Regular expression and Replacement format - HTH
Then I open up and see
the person fumbling here is me
a different way to be
the person fumbling here is me
a different way to be
- s_reynisson
- Posts: 939
- Joined: Tue May 06, 2003 1:59 pm