substring
..Root.String.substring
Returns new substring that starts at character position pos and spans len characters (or until the end of the string).
Parameters: Int
pos, Int
len
Return value: new String
NativeCallable
, Callable
auto str.=("Hello World!");
log(str.substring(6, 5));