SubStringBJ

Parameters
sourcestring
startinteger
endinteger
comment
patch

1.00

Source
Blizzard.j (raise an issue to discuss on Github or submit a PR)
return type
string
Source code
function SubStringBJ takes string source, integer start, integer end returns string
    return SubString(source, start-1, end)
endfunction