Template:cheatsheet-key: Difference between revisions
Jump to navigation
Jump to search
AndyMabbett (talk | contribs) (→Key: ! = Awaiting documentation) |
AndyMabbett (talk | contribs) (rfc2119 template) |
||
Line 2: | Line 2: | ||
Based on Perl's [http://www.perl.com/doc/manual/html/pod/perlre.html standard quantifiers]: | Based on Perl's [http://www.perl.com/doc/manual/html/pod/perlre.html standard quantifiers]: | ||
{| border="1" cellpadding="2" | {| border="1" cellpadding="2" | ||
| '''bold''' {1} || | | '''bold''' {1} || {{must}} be present exactly once | ||
|- | |- | ||
| ''italic''<nowiki>*</nowiki> || Match 0 or more times | | ''italic''<nowiki>*</nowiki> || Match 0 or more times |
Revision as of 11:39, 28 August 2007
Key
Based on Perl's standard quantifiers:
bold {1} | 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 |
# | comment |
! | Awaiting documentation |