BreadCrumbs: Regular Expressions
Regular Expressions
From Luke Jackson
(Difference between revisions)
| Revision as of 16:54, 17 December 2006 (edit) Ljackson (Talk | contribs) ← Previous diff |
Revision as of 22:59, 2 January 2007 (edit) Ljackson (Talk | contribs) (→Examples) Next diff → |
||
| Line 1: | Line 1: | ||
| == Examples == | == Examples == | ||
| - | Return all files that are not .mp3 or .jpg: | + | === Return all files that are not .mp3 or .jpg === |
| [^\.(mp3|jpg)]$ | [^\.(mp3|jpg)]$ | ||
| + | |||
| + | === Return all items that do not start with /www === | ||
| + | |||
| + | ^\/[^w{3}] | ||
Revision as of 22:59, 2 January 2007
Examples
Return all files that are not .mp3 or .jpg
[^\.(mp3|jpg)]$
Return all items that do not start with /www
^\/[^w{3}]