I have a slightly unusual request - I want to input (not open) a yxmd module as a text file and parse the xml to see which tools I use, and how many times I use them. So I could input a module, and would get something like this:
Join - 14
Summarise - 4
Browse - 3
Input - 1
Output - 1
When I change .yxmd -> .txt and look at the contents, I can see a structure a bit like this:
<Properties>
<Configuration>
<SummarizeFields>
Which tool should I use to recognise the above pattern, and save each entry in the line after <Configuration> to a new record? I could then summarize that to find out how often I use each tool. I might need a simple lookup between the xml title <SummarizeFields> and the normal titl (Summarize) but that should be fairly easy to accomplish. However my text file parsing skills aren't good enough to automate the required step. Any help would be much appreciated! Thanks