Index // Mid


Format:

mid( string, start character, length )

Description:

Returns a portion of the specified string, starting from the start character, and continuing for length characters.

See Also:

Left, Right

Example:

The line

print mid("Hello", 2, 3)
will print
ell