3.23
@@Length
Use @@Length when you want to return the number of characters in a specified token for use with @@IncludeIf and @@DefineIf.
Syntax:
@@Length(<token>)
Parameters:
<token>
The token whose length you want to return.
Example
@@IncludeIf(@@Length(#MDSLPolicy.AccountZip) > 5)
Account zip code is zip + 4
@@Else
Account zip code is standard
@@End