Trim
Removes white chars from beginning and end of the string. If no such chars are found at begging or end of string, unchaned string is returned.
Syntax
Trim("stringToTrim");
Function arguments
- stringToTrim – (String) The string value to be trimmed
Return value
This function returns String.
Returns trimmed string
Examples
Example 1:
'result’ variable value will be „abc”.
result = Trim(" abc ");
Example 2:
'result’ variable value will be „abc xyz”.
result = Trim(" abc xyz ");
Example 3:
'result’ variable value will be „abcxyz”.
result = Trim("abcxyz");