Remove trailing spaces from a string.
Syntax
Rtrim(string)
Key
string A text string or string expression.
Dim strDemo
strDemo = Rtrim("Talent is just a skill you're willing to practice ")
Returns "Talent is just a skill you're willing to practice"
“The hands of every clock are shears, trimming us away scrap by scrap, and every time piece with a digital readout blinks us towards implosion” ~ Dean Koontz
Right - Extract a substring from a string.
LTrim - Remove leading spaces from a string.
Trim - Remove leading and trailing spaces from a string.