StringTrim
Alias:StringTrim
, TrimString
Output:StringStream
Trims a string, removing whitespace from the TrimSide
.
Parameter | Type | Required | Position | Default Value | Summary |
---|---|---|---|---|---|
String | string | ✔ | 1 | The string to change the case of. | |
Side | TrimSide | 2 | Both | The side to trim. |
Examples​
Example 1​
SCL​
StringTrim String: ' spaces '
Expected Output​
spaces
Example 2​
SCL​
TrimString ' spaces ' Side: TrimSide.Start
Expected Output​
spaces