Reads the string and removes all trailing white spaces.
RTrim( String )
The string without trailing white spaces.
RTrim(" abc ") // Returns the string " abc". RTrim("abc ") // Returns the string "abc".