I have a file with lots of text editing using NotePad++.
for example
<span class="italic">some text</span><span class="bold">another text or some text</span>
I would like to use NotePad++'s regex replace to replace
<span class"italic>some text</span>
to <i>some text</i>
and <span class="bold">another text or some text</span>
to <b>another text or some text</b>
I'm able to match the span text however How to replace them with NotePad++
Find <span class="italic">text12312</span>
and replace it with <i>[a-zA-Z]*</i>
will actually put the "[a-zA-Z]*"
text into replaced string and not "text12312"
.