1

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.

Keith L.
  • 2,084
  • 11
  • 41
  • 64
  • 1
    What have you tried? Won't the `id="something"` matches the id? And since you don't need to extract anything, you can just replace with `id=""`? – nhahtdh Feb 04 '13 at 12:56

1 Answers1

2

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

sp00m
  • 47,968
  • 31
  • 142
  • 252