Using a regular expression, how can I find everything in between <p
and </A>
and replace it with just <p>
in the following string. (The contents between <p </A>
is never the same, so I just need to get everything and delete it).
<p TITLE="Super Sent., lib. 3 d. 6 q. 1 a. 2 arg. 3"><A NAME="8220"><SPAN CLASS="ref">[8220] Super Sent., lib. 3 d. 6 q. 1 a. 2 arg. 3 </SPAN></A>
In short I want to replace all instances of the above with just: <p>
` and replace it with just `
`*, Then expected result is this `
` ? I hardly think so ..
– Shafizadeh Feb 25 '16 at 22:47