you could use "left(word, len(word-1))
it will only keep all of the letters except the last one.
There was a slight mistake in Justifun's answer, but the following works perfectly:
left(word, len(word)-1)[/code:nkzd3l93]
I needed something similar and this helped me out, thanks!