hello. I made a mistake, now all the characters from words have been split by a single space, and the words have been split by another space (that means 2 spaces).
M y M o t h e r i s v e r y b e a u t i f u l.
(The system see here only one space between words, but there are 2 spaces)
So, how can I remove with REGEX only the space between characters, and let one space between words?
I try this, but remove all space, not let any space between words ^[ \t]+|[ \t]+$