Hi, I have a string that looks like this $text = 'blah, blah, blah, '; I want to use rtrim to cut off the last comma and the whitespace. So I use rtrim($text, ', '); To my surprise, it doesn't cut anything off. When I echo $text the comma and the space are still there. Is rtrim broken or my logic or my script? David K.