I have a long text where some times i find a lot of blank spaces between two words. Is it any way i can delete the blank spaces
How to turn this: to this:
firstword second firstword secondword
*lol* try underscores to show your spaces
Use Find and Replace (either CTRL+F/CTRL+H or CTRL+R) with Regular Expressions checked.
Find: _+
Replace _
Where _ stands for a single space character.
Replace all occurrences (at once) if there are no multiple space characters you want to keep anywhere.
I have a long text where some times i find a lot of blank spaces between two words. Is it any way i can delete the blank spaces
How to turn this: to this:
firstword second firstword secondword
*lol* try underscores to show your spaces
Use Find and Replace (either CTRL+F/CTRL+H or CTRL+R) with Regular Expressions checked.
Find:
_+
Replace
_
Where _ stands for a single space character.
Replace all occurrences (at once) if there are no multiple space characters you want to keep anywhere.