Template:cheatsheet-key: Difference between revisions
Jump to navigation
Jump to search
(Perl, not POSIX) |
(padding) |
||
Line 1: | Line 1: | ||
===Key=== | ===Key=== | ||
Uses Perl's [http://www.perl.com/doc/manual/html/pod/perlre.html standard quantifiers]: | Uses Perl's [http://www.perl.com/doc/manual/html/pod/perlre.html standard quantifiers]: | ||
{| | {| border="1" cellpadding="2" | ||
| '''bold''' {1} || Must be present exactly once | | '''bold''' {1} || Must be present exactly once | ||
|- | |- |
Revision as of 19:08, 5 December 2006
Key
Uses 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 |