Trim String Node

Trim String node.

The Trim String node removes specified characters from the beginning and/or end of a string. It does not affect characters in the middle of the string.

This node is useful for cleaning up input data, such as removing unwanted prefixes, suffixes, or extra whitespace.

入力

String(文字列)

The input string to trim.

Characters

A set of characters to remove from the start and/or end of the string.

Each character is treated individually, and the order does not matter. Any matching characters found at the boundaries of the string are removed repeatedly until a non-matching character is encountered.

Whitespace

Removes whitespace characters (such as spaces, tabs, and line breaks) in addition to the characters specified in Characters.

Limit(制限)

Start(開始)

Enables trimming from the beginning of the string.

End(終了)

Enables trimming from the end of the string.

出力

String(文字列)

The resulting string after trimming.