Functions - Mid |
|
|
Returns a String containing a specified number of characters from a string. SyntaxMid(source, start) ParameterssourceThe
string from which characters are returned. If the length parameter is not given, the function takes all characters from start to the end of the string. ExampleThis expression part evaluates to "Bar": Mid("FooBar", 4) This expression part evaluates to "oB": Mid("FooBar", 3, 2) |