SubStringBJ

Parameters
source string
start integer
end integer
comment
patch

1.00

Source
Blizzard.j
return type
string
Source code
function SubStringBJ takes string source, integer start, integer end returns string
    return SubString(source, start-1, end)
endfunction