Keith L.
Keith L.

Reputation: 2124

Notepad++ / UltraEdit: Search for id="xyz" and replace xyz

I want to build a test scenario and need to search in a html document for this:

<a id="xyz" href="#"></a>
<a id="123pa" href="#"></a>
<span id="sdasd"></span>

I want to replace id="someString" with id=""

Working with Notepad++ and UltraEdid.

Thanks for help.

Upvotes: 1

Views: 505

Answers (1)

sp00m
sp00m

Reputation: 48817

Replace id=".+?" or id="[^"]+" by id="".

Upvotes: 2

Related Questions