Template:cheatsheet-key: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (→Key) |
||
Line 1: | Line 1: | ||
===Key=== | ===Key=== | ||
Fondée sur les [http://www.perl.com/doc/manual/html/pod/perlre.html quantificateurs standards] de Perl : | |||
{| border="1" cellpadding="2" | {| border="1" cellpadding="2" | ||
| '''bold''' {1} || | | '''bold''' {1} || Doit être présent exactement une fois | ||
|- | |- | ||
| ''italic''<nowiki>*</nowiki> || | | ''italic''<nowiki>*</nowiki> || Correspond à 0 ou plus | ||
|- | |- | ||
| + || Match 1 or more times | | + || Match 1 or more times | ||
Line 10: | Line 10: | ||
| ? || Match 1 or 0 times | | ? || Match 1 or 0 times | ||
|- | |- | ||
| [ | | [crochets rectangulaires] || liste de valeurs communes | ||
|- | |- | ||
| ( | | (parenthèses) || format de donnée | ||
|- | |- | ||
| # || | | # || commentaire | ||
|} | |} |
Revision as of 06:06, 14 December 2006
Key
Fondée sur les quantificateurs standards de Perl :
bold {1} | Doit être présent exactement une fois |
italic* | Correspond à 0 ou plus |
+ | Match 1 or more times |
? | Match 1 or 0 times |
[crochets rectangulaires] | liste de valeurs communes |
(parenthèses) | format de donnée |
# | commentaire |