QUOTELEVEL-Determinetheenclosuredepthlevelfortextwithinquotes(0=outsidequotes,1=insidequotes)LEVEL=vlt.string.quotelevel(STR)ForthestringSTR,returnsanequallylongarrayofnumbersLEVELthatindicateswhetherornotthetextisinsidequotes.Onecanalsocall:LEVEL=vlt.string.quotelevel(STR,QUOTESYMBOL)tospecifyadifferentsymbolthan'"'tobeusedforthequote.Examples:str='this is "a test" of quote depth';level=vlt.string.quotelevel(str)str2='this is ''a test'' of quote depth';level2=vlt.string.quotelevel(str2,'''')% Note that '''' produces a single ' as a string in Matlab