Easypt

substring

..Root.String.substring

Returns new substring that starts at character position pos and spans len characters (or until the end of the string).

Child of:

String

Signatures:

NativeCallable, Callable

Example:

auto str.=("Hello World!");
log(str.substring(6, 5));