In RegEx, I want to find the tag and everything between two XML tags, like the following:
RegEx
XML tags
It is not good to use this method but if you really want to split it with regex
((.|\n)*?)<\/primaryAddress>
the verified answer returns the tags but this just return the value between tags.