You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Trim trailing spaces from a string.
Syntax
var sTrimmed = TRIM_RIGHT(sString);
Parameters

sString

Required. The string to be right trimmed.

 |
 
Return Value
String. Returns the right trimmed string.
Example
var myString = GETVALUE("PageMarker");
var sTrimmed = TRIM_RIGHT(myString);
 

  • No labels