| Newsgroups |
perl.cvs.perlfaq |
| Message-ID |
<[email protected]> |
cvsuser 02/07/20 10:17:32
Modified: . perlfaq6.pod
Log:
* removed dangling sentence fragement. i have no idea what i was
thinking *shrug*
Revision Changes Path
1.16 +2 -4 perlfaq/perlfaq6.pod
Index: perlfaq6.pod
===================================================================
RCS file: /cvs/public/perlfaq/perlfaq6.pod,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -w -r1.15 -r1.16
--- perlfaq6.pod 17 Jul 2002 17:48:49 -0000 1.15
+++ perlfaq6.pod 20 Jul 2002 17:17:32 -0000 1.16
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq6 - Regular Expressions ($Revision: 1.15 $, $Date: 2002/07/17 17:48:49 $)
+perlfaq6 - Regular Expressions ($Revision: 1.16 $, $Date: 2002/07/20 17:17:32 $)
=head1 DESCRIPTION
@@ -282,8 +282,6 @@
As a regex, that looks like C</[^\W\d_]/>. Its complement,
the non-alphabetics, is then everything in \W along with
the digits and the underscore, or C</[\W\d_]/>.
-
-You can also
=head2 How can I quote a variable to use in a regex?