StringLen - method of the Pm object
Description:
Returns the number of characters in the string.
Syntax:
Long StringLen(String sValue)
Parameters:
sValue | (String) Source string expression. |
---|
Example:
JavaScriptVBScriptSelect and copy to clipboard
var nChar = Pm.StringLen("Promotic");
// n contains 8
Dim nChar
nChar = Pm.StringLen("Promotic")
' n contains 8