This is not really an important question, just curious about possible solutions.
I know - this should be done with XSLT, but if there are already solutions in UE, it would be fine.
Example of an existing XML file:
a) Define a tag and convert the content to CSV like format
b) Define a tag like PERSON and sort all persons based on a subtag like ID
c) Define a tag like PERSON and sort the subtags alphabetically (C - I - N)
I know - this should be done with XSLT, but if there are already solutions in UE, it would be fine.
Example of an existing XML file:
Code: Select all
<PERSON>
<NAME>John</NAME>
<ID>25</ID>
<CATEGORY>S</CATEGORY>
</PERSON>
<PERSON>
<NAME>Susan</NAME>
<ID>9</ID>
<CATEGORY>M</CATEGORY>
</PERSON>
Code: Select all
<PERSON><NAME>John</NAME><ID>25</ID><CATEGORY>S</CATEGORY></PERSON>
<PERSON><NAME>Susan</NAME><ID>9</ID><CATEGORY>M</CATEGORY></PERSON>
Code: Select all
<PERSON>
<NAME>Susan</NAME>
<ID>9</ID>
<CATEGORY>M</CATEGORY>
</PERSON>
<PERSON>
<NAME>John</NAME>
<ID>25</ID>
<CATEGORY>S</CATEGORY>
</PERSON>
Code: Select all
<PERSON>
<CATEGORY>S</CATEGORY>
<ID>25</ID>
<NAME>John</NAME>
</PERSON>
<PERSON>
<CATEGORY>M</CATEGORY>
<ID>9</ID>
<NAME>Susan</NAME>
</PERSON>
UE 26.20.0.74 German / Win 10 x 64 Pro