Ltrim Function
Description:
Trim leading space characters from the beginning of the text.
This is useful if you are concerned the user may mistakenly add extra space at the beginning of an edit box on the questionnaire.
Returns:
Text
Parameter:
Parameter | Data Type | Description |
|---|---|---|
1 | Text | The text. |
Example:
When using functions inside a field, remember the field brackets:
{Ltrim(VariableName)}
Expression | Result |
|---|---|
Ltrim( " a b c " ) | "a b c " |