Skip to content

Instantly share code, notes, and snippets.

@m-arrieta-r
Last active August 11, 2016 00:04
Show Gist options
  • Save m-arrieta-r/c8f530da12636ef74d08594d2d96b72a to your computer and use it in GitHub Desktop.
Save m-arrieta-r/c8f530da12636ef74d08594d2d96b72a to your computer and use it in GitHub Desktop.
Utils regex

#Utils regex

##Sintaxis

##Ejemplos ###atom search

\$\{[a-z]*}   //--->    ${anyword}

\$\{([A-Z0-9]*)}  //---> ${anywordOrnumber}
//nota parentisis utiles para replace $1...

###js

 /\** *\[ *LINK *TO *ROLLOVER *\d\d* *\]/  //--->    * [LINK TO ROLLOVER (anynumber)] (n spaces and asterisk)
 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment