Skip to content

Trim string

ryannewington edited this page Jun 23, 2016 · 1 revision

Trim string

Summary

This transform removes leading and/or trailing spaces from a string

Parameters

Parameter Description
Trim type The type of trim to perform. You can trim the left, right or both ends of the string

Input Type

The transform accepts string values as the input

Multiple input values

The transform accepts multiple input values, and processes each of them individually.

Return Type

The transform returns a string value for each string input value

Usage

Input value Trim type Output value
" Text " Left "Text "
" Text " Right " Text"
" Text " Both "Text"