Skip to content

Instantly share code, notes, and snippets.

@jaimeivan
Last active August 29, 2015 14:01
Show Gist options
  • Save jaimeivan/6cfa831be6482b88c6a0 to your computer and use it in GitHub Desktop.
Save jaimeivan/6cfa831be6482b88c6a0 to your computer and use it in GitHub Desktop.
Expresiones regulares probadas en el Sublime2

Busca los <a> que NO tengan la propiedad name y que no tengan ningún contenido


De éstos:

<input name="2013" id="2013"></input>
<a href="http://your.site.com"></a>
<a href="http://your.site.com">sdsfs</a>
<a name="2013" id="2013"></a>
<a id="2013" name="2013"></a>

Encuentra éste:

<a href="http://your.site.com"></a>

regex:

(?!.*(name))<a.*><\/a>

Busca lo que tenga en el href el script de Dream Weaver MM_openBrWindow y sólo deja el url


De:

<a href="javascript:MM_openBrWindow('http://your.site.com','nueva-vetana','scrollbars=yes,resizable=yes,width=720,height=400')">Tu sitio .com</a>

a:

<a href="http://your.site.com">Tu sitio .com</a>

regex:

Find What:

javascript:MM_openBrWindow\('([a-z/A-Z\-0-9.]*),?.*\)

Replace With:

$1

Busca todo lo que tenga onclick


<a onclick="window.open(this.href,'options','scrollbars=yes,resizable=yes,width=720,height=400'); return false" href="http://your.site.com" />

regex:

onclick=\".*?\"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment