In RegEx, I want to find the tag and everything between two XML tags, like the following:
RegEx
XML tags
However, if you want to do it anyway, search for regex pattern
[\s\S]*?<\/primaryAddress>
and replace it with empty string...