Hi,
I have two xml files which are mentioned below.
XML File 1
XML File 2
Now, in both xml files I need to search for two specific strings which are actually headings of table, for the first file it is “B. III.1. Bruttorückstellung für noch nicht abgewickelte Versicherungsfälle” and for the second file it is “C. II. 1. Bruttorückstellung für noch nicht abgewickelte Versicherungsfalle” and after searching it, I need to extract the table below (which you can see in the both images).
I tried with xml parsing using query, for one file it’s possible but for several files the “xml parsing query” is not working as the query is not dynamic one. As you can see in the both images the ascending xml tags for the headings (searched strings) are different (first file’s searched string has tag whereas the second file has only) so, the query does not work in both.
Is there any possibility I can use regex over here to extract the table below of the heading (with the help of the searched strings) ? What will be regex in that case ?
Any suggestion will be very helpful.
Thanks.