MID
The MID function returns a specified number of characters from a string.
The MID function is often used to manipulate strings, for example, to show shortened string values on Mimics.
Function Name |
MID |
Description |
Returns a specified number of characters from an input string. The starting character is defined in the argument. |
Arguments |
MID('STRING', START, LENGTH) Where:
|
Returns |
STRING. The returned value is a string value that consists of the specified number of characters. The characters are taken from the defined input string, beginning at the first character from the left of the string. |
Example:
MID( 'Main Site.Mains Control 1', 10, -1 )
The output is 'Mains Control 1'.