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 to return substring of |
| Index within |
| Desired length of substring (optional) |
Output
A substring of input string
Example
Last updated