Solved
ACL recursive function to get all children of a parent tag
Hello,
With Arbortext Command Language, How to write a function to get all children of a parent tag ?
David
Hello,
With Arbortext Command Language, How to write a function to get all children of a parent tag ?
David
If you want a recursive function to return all elements of a document, look at the code in the oid_children ACL function and modify it as needed.
However, if you want a list of all elements in a document, you can get the list with code like this
global arr1[]
oid_find_children(oid_null(), $arr1, '.*', 0x08)
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.