Hello community,
I have an XML that I need to parse (can't share due to NDA) and the file contains all the escaped characters:
" |
' |
< |
> |
& |
I could not get the XML parse tool to work with this XML. I found a solution, but I feel it is very ugly and also it increases the running time a lot. I used the Find Replace tool with the above fields to be replaced by respectively <, &, >, " and ,. Following it with the XML parse tool then it worked.
Then by googling the community I found out about the EscapeXMLMetacharacters(String) formula: https://help.alteryx.com/10.1/index.htm#Reference/Functions.htm#Specialized
But I need the exact opposite of this formula? Does this also exist?
Or more in general, what is the best way to parse XMLs in Alteryx that still have all those weird characters?
<expedicion>123456</expedicion>
<referencia>123456</referencia>
<fecha>09/09/2020</fecha>
<tipo>ABCDEFG</tipo>
<descripcion>ABCDEFG</descripcion>
....
Thank you.