We have xml file which contains following tag
<p> SOME TEXT IN P TAG <list> <list1> <item1>Item name</item1> </list1> </list> </p>
or...
<p> <list> <list1> <item1>Item name</item1> </list1> </list> SOME TEXT IN P TAG </p>
When this tag is parsed we are getting following dictionary:
p = { "Entity_Name" = p; "Entity_Type" = unknown; "Entity_Value" = "SOME TEXT IN P TAG"; list }
Can someone help us to get sequence of "list" key and text in <p> tag using TTXMLParser?
It looks like you're new here. If you want to get involved, click one of these buttons!