Doug OLeary <dkole...@olearycomputers.com> writes:
> ...
> Any hints/tips/suggestions greatly appreciated especially with complete noob 
> tutorials for xpath.

You can certainly do it with "XPath" (look for the "following-sibling" axis).

You can also use Python (with "lxml"). If you have an element "e", then
"e.getnext()" gives you the sibling following "e" (or `None`).

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to