BRACELEVEL-DeterminetheenclosuredepthlevelfortextwithinbracesLEVEL=vlt.string.bracelevel(STR)ForthestringSTR,returnsanequallylongarrayofnumbersLEVELthatindicatestheenclosuredepth.Theenclosuredepthanswershowmanylevelsdeepeachcharacteriswithinparentheses.Onecanalsocall:LEVEL=vlt.string.bracelevel(STR,BRACELEFT,BRACERIGHT)AndspecifytheLEFTBRACEandRIGHTBRACEcharacters.Examples:str='this is (a test of (depth))';level=vlt.string.bracelevel(str)str2='this is [a test of [depth]]';level=vlt.string.bracelevel(str,'[',']')