Description Usage Arguments Value Examples
It acts similiarly to Excel's MID function. Function is for string extraction. You select the starting number and the amount of characters you want to extract.
1 |
text |
From whch text should it return the string? |
start_num |
Where should it start counting from? |
num_chars |
How many characters should it return? |
In this example we want to extract "kata" from this string. So we specify 5 as the starting number and 4 as the amount of characters to extract. Function will always return character class.
1 | MID("Kayakata",5,4)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.