Share

Tool Input: String

The Tool Input: String generates a textbox in the rollout. Strings may be split based on a character such as a comma (",") via Split String or based on a regular expression with Split String with Regex. Individual string values may be converted into floats, integers, or booleans with Parse Float, Parse Integer, Parse Boolean.

In the graph above, a sequence of instructions is split and converted into a series of transforms to create a spline.

Tip:

The ",\s*" regular expression pattern indicates that we will split if we encounter a comma "," followed by one or more instances of white space "\s*" ("\s" denotes any white space, and "*" denotes zero or more repetitions of that white space).

Was this information helpful?