Welcome To Snipplr
Everyone's Recent Regular Expression Snippets
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
https://www.chrisjmendez.com/2008/10/18/search-for-mp3s-pdfs-or-comic-books-using-google/?utm_source=snipplr&utm_medium=profile&utm_campaign=personal_branding
1
2240
posted 17 years ago by chrisaiv
This regular expression matches any trailing whitespace at the end of a line (whitespace and tabs). Replace this with nothing to remove trailing whitespace from files.
1
2326
posted 17 years ago by kouphax
(Created for JavaScript)
These are rather forgiving. Spaces, dashes, or periods are allowed as separators. Extensions can be recognized by several strings (#, x, x., ext, ext., extension).
Area code: $1$2
Exchange code: $3
Station code: $...
1
2897
posted 18 years ago by wizard04
By the legendary abigail. Fails to match if and only if it is matched against a prime number of 1's. That is, '11' fails, but '1111' does not.
I once heard him talk why this works, but I forgot most of it.
3
2322
posted 18 years ago by banzaiman
Convert headings to have id's with the content of the heading
2
1543
posted 18 years ago by lagrangeapex
I use in textmate / e to convert whitespace to underscores.
6
2159
posted 18 years ago by lagrangeapex
Developed for eclipse but prolly useful elsewhere, put the text after 'find' in the 'find' box and the text after 'replace' in 'replace'.
Note: this example uses an html list item 'li', make sure to replace that with the tag you want to find
5
2291
posted 19 years ago by rhlowe
If there will be multiple sets of these tags in a scanned XML string, you need the '?' after the '*' to specify a non-greedy (lazy) match.
4
2787
posted 19 years ago by rengber
Matches any hex value (0123456789ABCDEF) preceded by the pound sign (#) of exactly 3 or 6 digits in length.
3
2196
posted 19 years ago by Corhol