Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
docs:programming:javascript:pattern_matching_with_regular_expressions [2007/11/11 14:56] – created billh | docs:programming:javascript:pattern_matching_with_regular_expressions [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 38: | Line 38: | ||
|\D |Any character other than an ASCII digit; Equivalent to ['' | |\D |Any character other than an ASCII digit; Equivalent to ['' | ||
|[\b] |A literal backspace (special case) | | |[\b] |A literal backspace (special case) | | ||
+ | |||
+ | ===== Repetition ===== | ||
+ | ^Character | ||
+ | |{n, | ||
+ | |{n,} |Match the previous item n or more times | | ||
+ | |{n} |Match exactly n occurences of the previous item | | ||
+ | |? |Match zero or one ocurrences of the previous item. That is, the previous item is optional. | ||
+ | |+ |Match one or more occurrences of the previous item. Equivalent to {1,} | | ||
+ | |* |Match zero or more occurrences of the previous item. Equivalent to {0,} | | ||
+ | |||
+ | FIXME - enter more table references |