I am comparing two xml files using win merge. The files are deployment files and im looking for variation between the environments. The main issue is that the xml files are littered with tags that indicate a change in underlying id e.g. 123 but this is unimportant for comparing.
I want to create a regex that i can use in winmerge to exclude elements to compare only the interesting elements. e.g. compare element in the example below
Environment 1
<table> <tableInfo> <tableId>293</tableId> <name>Table Name New</name> <repositoryId>0</repositoryId>
Environment 2
<table> <tableInfo> <tableId>965</tableId> <name>Table Name Old</name> <repositoryId>0</repositoryId>
Please note that the application producing the xml spits these out in line by line order so it is not a true xml compare