Difference between revisions of "Regular Expressions"
From EditPlus Wiki
John morse (Talk | contribs) |
John morse (Talk | contribs) |
||
Line 1: | Line 1: | ||
+ | == To find various forms of a word == | ||
+ | fast(er|est)<br> | ||
+ | For example: this reg. expression '''th(is|e|at)''' will find the words This, The, and That | ||
+ | == Find a specific tag == | ||
+ | <blink[a-zA-Z0-9]* [>]*> | ||
+ | |||
+ | == Find Commented Text == | ||
+ | <nowiki><!--(.*)--></nowiki> |
Revision as of 02:18, 26 October 2004
To find various forms of a word
fast(er|est)
For example: this reg. expression th(is|e|at) will find the words This, The, and That
Find a specific tag
<blink[a-zA-Z0-9]* [>]*>
Find Commented Text
<!--(.*)-->