Template:cheatsheet-key: Difference between revisions
Jump to navigation
Jump to search
(→Key) |
(table) |
||
Line 1: | Line 1: | ||
===Key=== | ===Key=== | ||
Uses standard [http://en.wikipedia.org/wiki/Regular_expression#Basic_concepts quanitification] operators. | Uses standard [http://en.wikipedia.org/wiki/Regular_expression#Basic_concepts quanitification] operators. | ||
{| | |||
| '''bold''' || Must be present exactly once | |||
|- | |||
| ''italic''<nowiki>*</nowiki> || Match 0 or more times | |||
|- | |||
| + || Match 1 or more times | |||
|- | |||
| ? || Match 1 or 0 times | |||
|- | |||
| [square brackets] || list of common values | |||
|- | |||
| (parentheses) || data format | |||
|} |
Revision as of 00:07, 5 December 2006
Key
Uses standard quanitification operators.
bold | Must be present exactly once |
italic* | Match 0 or more times |
+ | Match 1 or more times |
? | Match 1 or 0 times |
[square brackets] | list of common values |
(parentheses) | data format |