SubStringBJ

Parameters
source string
start integer
end integer
comment
patch

1.00

Source
Blizzard.j (suggest an edit or discuss on Github)
return type
string
Source code
function SubStringBJ takes string source, integer start, integer end returns string
    return SubString(source, start-1, end)
endfunction