Thursday, 9 August 2007

RTRIM

RTRIM removed characters from the right of a string if they are equal to the specified string.

Example: rtrim('bcaaaaaa','a') = 'bc'

If the last parameter is not specified, spaces are removed from the right side.

No comments: