You may use hyphens to indicate ranges of characters. The pattern dg matches "dig" or "dog" or "dug". (a|b) means an "a" or a "b".Įnclosing a list of characters in brackets means, "match exactly one of these characters." Example.
(If you are not sure, which is often the case, "escape" the punctuation mark-precede it with a backslash.) Whether or not they are special, if you want the mark itself, precede it with a backslash. Punctuation marks sometimes have a special meaning.
in XHTML, they are mandatory.) A simple Find/Replace would do the trick, but you've also got width=60px and lots of other widths. You want that upgraded to an XHTML compatible attribute width='120px'. The "Find" part of a Find/Replace dialog is one simple example. Regular expressions are used for matching string patterns. If you've never used regex before, we won't teach you too much in this one short page, but we'll get you started with a basic use. One of the great features of programmer's editor Notepad++ is that it matches these old veterans' regex strengths without hiding them in a forest of cryptic commands. One of the features of the great old programming editors (with legendary Unix names like Vi and Emacs) was their ability to use regular expressions (aka regex) in search and replace operations.