Documentation Index
Fetch the complete documentation index at: https://www.integrate.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Description
Returns part of a string field.Syntax
SUBSTRING(string, start_index, stop_index)
Arguments
string - string expression start_index - integer indicating start of the substring. stop_index - integer indicating the index of the character following the last character of the substring.Examples
SUBSTRING('California',4,7) returns ‘for’.