String Trim

Removes leading and/or trailing whitespace from a string. Common whitespace characters include spaces, tabs, and newlines.

Interface

Inputs

ParameterDetailsPossible Types
String

The string that may contain leading and trailing whitespace that should be removed.

Primary Input

String[]
String
Start

Whether the start of the string should have its whitespace removed.

Default: true

bool[]
bool
End

Whether the end of the string should have its whitespace removed.

Default: true

bool[]
bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

String
String[]