View Single Post
Old 04-15-2021, 07:43 AM   #1
vijer
Junior Member
vijer began at the beginning.
 
Posts: 8
Karma: 10
Join Date: Mar 2017
Device: phone
Regex to remove html tags

I've been searching for a solution for hours, but haven't found any examples that help.

I want to search the file and remove all instances of <a id="pageXXX"></a> where XXX is the page number.

I have tried

(^<a id="page)(.*:?)("></a>)

(^<a id=\\"page)(.*:?)(\\"></a>)

(^<a id="page)([0-9]+)("></a>)

(^<a id=\\"page)([0-9]+)(\\"></a>)

What am I missing?
vijer is offline   Reply With Quote