Skip to main content
Keeps only a portion of a value, measured by character position. Use this to pull a fixed segment out of a longer piece of text, such as taking the first few characters of a code, dropping a known prefix, or grabbing a section from the middle of an identifier. You choose where the cut begins and, optionally, how many characters to keep.

Fields

Sample data

FieldValue
Start0
Length5
Input:
{ "sku": "SHIRT-001-RED" }
Output:
{ "sku": "SHIRT" }