There are two very important special characters in regular expressions, which are "[ ]". They can match characters that appear in "[]", such as "/[az]/" which can match a single character "a" or "z"; if the above expression is changed to "/[a-z]/", they can match any single lowercase letter, such as "a", "b", etc.
2011-09-09