MID
Returns a portion of input text beginning at specified location
MID(string
, start_index
, length
)
Returns a string beginning at specified starting index.
Arguments
Input
Description
string
String to return substring of
start_index
Index within string
to start substring at
length
Desired length of substring (optional)
Output
A substring of input string
Example
Last updated
Was this helpful?