XenoGuard 4.0 Documentation
Trim Whitespace
ActionStep Reference » Programming » String Operation » Truncate » Trim Whitespace
The ActionStep Trim Whitespace deletes all whitespace from the start and end of a specified string and stores the shortened string in Result of the result list.
[-] Hide
- Open the Programming node in the Workspace Explorer.
- Open the String Operation node.
- In the Truncate node, select the Trim Whitespace ActionStep.
Parameters:
The ActionStep has the following input parameters:
name |
Description
|
---|---|
Source String |
The string to be truncated.
Allowed Context Scopes [Fixed, Local, Global] Allowed Context Types [Variable, Parameter, Enum] |
Results:
The ActionStep returns the following results:
name
|
description
|
---|---|
Result |
Contains the truncated string.
Allowed Context Scopes [Fixed, Local, Global] Allowed Context Types [Variable, Parameter] |
If there are no whitespaces to be removed from the string, the current string is stored in Result of the result list. |
Example 1 (Removes whitespaces from a variable):
This example takes out the whitespaces of the local Company Name variable with Text as a data type. The result of removing the whitespaces in the beginning and end is then output via Write Text.
See other Truncate operations:
Substring
Remove
Trim Whitespace at Start
Trim Whitespace at End
Split
Between