I want to remove whitespaces between two words or more and two characters and more if exist.
Example :
text = " hello w orld "
or
text = " h el lo w or ld "
And I want to be like this :
text = "hello world"
NOT "helloworld"
!!
is that possible ?