diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-05-28 14:11:57 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-05-28 14:11:57 +0000 |
commit | d67bf1d95495fd9f41cabf2a1f9dc1f266c1575d (patch) | |
tree | dfed99a83e330e70babce532ed490327e8bcf761 /pod/perlretut.pod | |
parent | 5396e5927cc22f29132420d288a6e77fbe28d5e4 (diff) | |
parent | 7c6f5cd212ae61ef572b511249a68eba23258ef2 (diff) | |
download | perl-d67bf1d95495fd9f41cabf2a1f9dc1f266c1575d.tar.gz |
Integrate with Sarathy.
p4raw-id: //depot/cfgperl@6140
Diffstat (limited to 'pod/perlretut.pod')
-rw-r--r-- | pod/perlretut.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlretut.pod b/pod/perlretut.pod index 5ff4298012..66f8179ab6 100644 --- a/pod/perlretut.pod +++ b/pod/perlretut.pod @@ -344,7 +344,7 @@ become the svelte C<[0-9]> and C<[a-z]>. Some examples are /[0-9bx-z]aa/; # matches '0aa', ..., '9aa', # 'baa', 'xaa', 'yaa', or 'zaa' /[0-9a-fA-F]/; # matches a hexadecimal digit - /[0-9a-zA-Z_]/; # matches an alphanumeric character, + /[0-9a-zA-Z_]/; # matches a "word" character, # like those in a perl variable name If C<'-'> is the first or last character in a character class, it is |