XenoGuard 4.0 Documentation

Trim Whitespace At End

ActionStep Reference » Programming » String Operation » Truncate » Trim Whitespace At End 

The ActionStep Trim Whitespace At End removes all trailing whitespaces of a specified string and stores the shortened string in Result of the result list.


[-] Hide
  1. Open the Programming node in the Workspace Explorer.
  2. Open the String Operation node.
  3. In the Truncate node, select the Trim Whitespace At End 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]

Information If there are no whitespaces to be removed from the string, the current string is stored in Result of the result list.

Example 1 (Remove trailing whitespaces from a variable):

This example deletes all whitespaces at the end of the local Message variable with Text as a data type.  The result after removing the trailing whitespaces is then output via Message Box.


See other Truncate operations:

Substring
Remove
Trim Whitespace
Trim Whitespace at Start
Split
Between