> Hi, I'm trying to remove all extra spaces at the end of my sentences.
> Is there any way to do this?
The basic way is to do a find & replace and replace a space followed
by carriage return with a carriage return. To enter a carriage return
in the find & replace dialog press command-return.
You can also get fancy with grep and search for ' +$' (without the
quotes) and replace with nothing. The space searches for a space, the
plus sign says 'one or more', the $ anchors the string to the end of a
line.
Cheers