MID
Returns a specific number of characters from a text string, starting at the position you specify.
| Category | Text |
| Syntax | MID(text, start_num, num_chars) |
Parameters
| Parameter | Required | Description |
|---|---|---|
text | Required | The text string containing the characters to extract. |
start_num | Required | The position of the first character to extract (1-based). |
num_chars | Required | The number of characters to return. |
Example
MID("Hello", 2, 3) // → "ell"
Auto-generated from the EngCanvas function registry.