You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found myself looking for this today, so surprised to see this closed. I expected xml_descendants() to exist. It seems maybe xml_children() is intended but that doesn't match my expectation.
In particular, I want a functional equivalent of xml_find_all(xml, "descendant::*") On a particular example (I can add a reprex if needed) I found length(xml_children(xml)) == 84 but length(xml_find_all(xml, "descendant::*")) == 136.
With
siblings()
,following()
,preceding()
,ancestors()
,descendants()
The text was updated successfully, but these errors were encountered: