Description:
Returns a copy of a string without trailing spaces at the end (
right trim).
In the PROMOTIC system it is better to use the Pm.StringOper method.
Syntax:
String RTrim(String string)
Parameters:
string | (String) Text string |
---|
Note:
By this method only "space" chars are removed. Characters, like "new line", "tab", etc., are not removed by this.
Example:
VBScriptSelect and copy to clipboard
Dim s
s = RTrim(" Promotic ")
' Returns " Promotic"