in reply to Re: XPATH Looping
in thread XPATH Looping

Thank you for responding! I did not read before posting. I am copying the script for your review. I can also remove all PHI from the XML and copy it as well. Regards,

Replies are listed 'Best First'.
Re^3: XPATH Looping
by kcott (Archbishop) on Sep 20, 2012 at 05:45 UTC

    choroba++ has provided the solution below.

    Here's a couple of links you may find useful:

    XML Path Language (XPath)
    This shows the syntax from the W3C Recommendation. Note the difference between //path and .//path.
    XML::XPath - MANIFEST
    This has numerous examples of usage. In the past, I've found the code in the t/ directory particularly useful.

    -- Ken

      I will be reviewing the links today. Also super exited about mastering XML parsing. My intent is to save this information into a database, and then creating an interface for the reports. Thank you for your help!