Hello,
I have a requirement where I have to read XML's using the xpath meta data, is there any way in Alteryx by which I do ?
XML Example :
<Names>
<Name>
<Student-Name>Anything</Student-Name>
<RollNo>1234</RollNo>
</Name>
</Names>
xpath : "Names/Name/Student-Name" should return me "Anything"
JSON Example:
{
"Name": {
"Student-Name": "Anything",
"RollNo": 1234
}
}
xpath : "Name.Student-Name" should return me "Anything"