Welcome To Snipplr
Everyone's Recent Regular Expression Snippets
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
wiki files accumulate google-navclient-hilite junk created by the search highlighter in the google toolbar. Search the internet for "SPAN id google-navclient-hilite" and expect to see wiki entries with markup junk generated by the google toolbar....
0
2049
posted 17 years ago by jimfred
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
2204
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
2270
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
2810
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
2263
posted 18 years ago by banzaiman
Convert headings to have id's with the content of the heading
2
1502
posted 18 years ago by lagrangeapex
I use in textmate / e to convert whitespace to underscores.
6
2118
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
2241
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
2730
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
2144
posted 19 years ago by Corhol