ACL recursive function to get all children of a parent tag
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you for your response
