cvs commit: perlfaq perlfaq2.pod perlfaq6.pod
[email protected] (brian d foy) 18 Dec 2005 13:25:27 -0000
| Newsgroups | perl.cvs.perlfaq |
|---|---|
| Message-ID | <[email protected]> |
cvsuser 05/12/18 05:25:27
Modified: . perlfaq2.pod perlfaq6.pod
Log:
* perlfaq2: added "Perl Best Practices" and "Higher Order Perl"
* perlfaq6: fixed punctuation problems
Revision Changes Path
1.36 +12 -2 perlfaq/perlfaq2.pod
Index: perlfaq2.pod
===================================================================
RCS file: /cvs/public/perlfaq/perlfaq2.pod,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- perlfaq2.pod 13 Oct 2005 19:43:13 -0000 1.35
+++ perlfaq2.pod 18 Dec 2005 13:25:27 -0000 1.36
@@ -351,9 +351,19 @@
=item Special Topics
+ Perl Best Practices
+ by Damian Conway
+ ISBN: 0-596-00173-8 [1st edition July 2005]
+ http://www.oreilly.com/catalog/perlbp/
+
+ Higher Order Perl
+ by Mark-Jason Dominus
+ ISBN: 1558607013 [1st edition March 2005]
+ http://hop.perl.plover.com/
+
Perl 6 Now: The Core Ideas Illustrated with Perl 5
by Scott Walters
- ISBN 1-59059-395-2 [1st edition December 2004
+ ISBN 1-59059-395-2 [1st edition December 2004]
http://apress.com/book/bookDisplay.html?bID=355
Mastering Regular Expressions
1.37 +3 -3 perlfaq/perlfaq6.pod
Index: perlfaq6.pod
===================================================================
RCS file: /cvs/public/perlfaq/perlfaq6.pod,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- perlfaq6.pod 13 Oct 2005 19:49:13 -0000 1.36
+++ perlfaq6.pod 18 Dec 2005 13:25:27 -0000 1.37
@@ -873,9 +873,9 @@
if (eval { $line =~ /$pattern/ }) { }
-If all you really want to search for a string, not a pattern,
+If all you really want is to search for a string, not a pattern,
then you should either use the index() function, which is made for
-string searching, or if you can't be disabused of using a pattern
+string searching, or, if you can't be disabused of using a pattern
match on a non-pattern, then be sure to use C<\Q>...C<\E>, documented
in L<perlre>.