Menu

How to delete blank spaces in a text

2007-12-23
2012-11-13
  • Nobody/Anonymous

    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

     
    • Nobody/Anonymous

      *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.