Tell me, how to make such a replacement using a regular expression in the document:

there is

<a href = "address of page1" title = "link link1">

<a href = "page address2" title = "link2">

<a href = "page address3" title = "link3">

replace everything before the content of the "title" tag. To get it:

| link link1 ">

| link link2 ">

| link type3 ">

I would do in Notepad, but the addresses of the links are different, and a regular expression is required ((

    1 answer 1

    replace <a. *? title = "with |

    • thank you so much! it turns out so simple))) ps sorry, not enough authority plus karma;) - pletnev_rk