html - Write regular expression to find all tags with specific attribute -



html - Write regular expression to find all tags with specific attribute -

for example:

<abc:textlinkbutton id="someid" runat="server" clientidmode="static" cssclass="someclass" text="some text" meta:resourcekey="someresource" />

i need find " abc:textlinkbutton " tags, have clientidmode attribute. want search tags in visualstudio 2013. help.

edit: 1 more think. there quick way how remove clientidmode="static" attribute, abc:textlinkbutton tags, in visual studio 2013?

search <abc:textlinkbutton[^>]+clientidmode\b

html regex visual-studio-2013

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -