Im trying to construct a Regex Identifier for the following...
<w:p>
Some Other XML
<w:p someatribute="something">
HERE
</w:p>
Some Other XML
</w:p>
The Identifier needs to select just the following part...
<w:p someatribute="something">
HERE
</w:p>
And leave everything else in palce.
My current attempt... <w:p(.*?)Test(.*?):p>
Is selecting everything from the above sample. Can regex help me here to identify just the closest match and any text in between?
Many thanks!
TR