mid( string_expression, start_expression, length_expression)
returns string_expression
Returns a portion of the specified string_expression, starting from the start character, and continuing for length_expression characters or the end of the string_expression.
print mid("Hello", 2, 3) print mid("Hello", 2, 999)
will display
ell ello
0.9.5b | New To Version |
1.99.99.53 | Added length < 0 |
1.99.99.53 | Added start position < 0 |