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

Compare with Current View Page History

Version 1 Next »

Show Contents List

TRIM_RIGHT Function

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);
 
Show Contents List

  • No labels