I have the following regex and it finds a partial solution for me:
((?=(<\/))(.*?)(?:\>))
Given the Following line:
</EventSubType><OrgUnitNm>###</OrgUnitNm></test:CommonAttributes><ProductArrangementBasic><ProductId>####</ProductId></part:Asking>
The regex will give me:
</EventSubType></OrgUnitNm></test:CommonAttributes></ProductId></part:Asking>
I want just:
</test: </part:
Any help would be great.
Thank you.