summaryrefslogtreecommitdiff
path: root/pod/perlfaq6.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-06-01 08:24:40 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-06-01 08:24:40 +0000
commitf1cbbd6ecad59f8e4d9d331daa6642ebfd972ae1 (patch)
tree42d16c97acb412b54556213cf116af85e410aadb /pod/perlfaq6.pod
parent46836f5c247eb34869c545432b788a4a49f94ab5 (diff)
downloadperl-f1cbbd6ecad59f8e4d9d331daa6642ebfd972ae1.tar.gz
further qualify references to "alphanumeric" (from Wolfgang Laun
<wolfgang.laun@alcatel.at>) p4raw-id: //depot/perl@6186
Diffstat (limited to 'pod/perlfaq6.pod')
-rw-r--r--pod/perlfaq6.pod3
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perlfaq6.pod b/pod/perlfaq6.pod
index bf007ee26b..29136abd96 100644
--- a/pod/perlfaq6.pod
+++ b/pod/perlfaq6.pod
@@ -415,7 +415,8 @@ Use the split function:
Note that this isn't really a word in the English sense; it's just
chunks of consecutive non-whitespace characters.
-To work with only alphanumeric sequences, you might consider
+To work with only alphanumeric sequences (including underscores), you
+might consider
while (<>) {
foreach $word (m/(\w+)/g) {