mithlond
09/20/2022, 10:29 PMwritedump(xmlSearch(test, "allEnrollments/enrollment").map((enrollment) => enrollment.toString()).toList(""))
gives me output like
<?xml version="1.0" encoding="UTF-8"?><enrollment>...</enrollment><?xml version="1.0" encoding="UTF-8"?><enrollment>...</enrollment>
How do I get the same output without the <?xml version="1.0" encoding="UTF-8"?>
XML declaration for each one? I just want the node itself, not each node as a full xml object.gavinbaumanis
09/20/2022, 11:48 PMYogesh Lucid
09/21/2022, 9:01 AMMyka Forrest
09/21/2022, 1:04 PMxmlSearch()
piece return? What does the array look like before you convert to a list? Is the <?xml...>
node is its own array element?mithlond
09/21/2022, 3:14 PMmithlond
09/21/2022, 3:14 PM