G
goo
Guest
If I know there can be, but not mandatory, an jsonObject within an jsonObject, what is the correct way to check if it is there? oObject:Has('') seems to check only properties. I can get all names by oObject:GetNames() but is there an easy way of checking if it contains a spesific name without having to do a: def var Names as longchar extent no-undo. do i = 1 to extent(names): NameList = NameList + Names + ','. end. NamesList = right-trim(NameList,','). if index(NameLsit,'myObjectName') gt 0 then....
Continue reading...
Continue reading...