Mention the Regular Expressions book
Chip Salzenberg [Wed, 7 May 1997 12:00:00 +0000 (00:00 +1200)]
(this is the same change as commit 7dd178533182fc85a734d7633d0a938b5d1c853a, but as applied)

pod/perlbook.pod
pod/perlre.pod

index f52046b..d4bc876 100644 (file)
@@ -15,7 +15,9 @@ nearly all of Perl, while I<Learning Perl> is a tutorial that covers
 the most frequently used subset of the language.  You might also check
 out the very handy, inexpensive, and compact I<Perl 5 Desktop
 Reference>, especially when the thought of lugging the 676-page Camel
-around doesn't make much sense.
+around doesn't make much sense.  I<Mastering Regular Expressions>, by
+Jeffrey Friedl, is a reference work that covers the art and implementation 
+of regular expressions in various languages including Perl.
 
     Programming Perl, Second Edition (the Camel Book):
        ISBN 1-56592-149-6      (English)
@@ -27,5 +29,7 @@ around doesn't make much sense.
        ISBN 3-930673-08-8      (German)
 
     Perl 5 Desktop Reference (the reference card):
-
        ISBN 1-56592-187-9      (brief English)
+
+    Mastering Regular Expressions (the Hip Owl Book):
+       ISBN 1-56592-257-3      (English)
index ed9c533..2b24379 100644 (file)
@@ -573,3 +573,7 @@ You can't disambiguate that by saying C<\{1}000>, whereas you can fix it with
 C<${1}000>.  Basically, the operation of interpolation should not be confused
 with the operation of matching a backreference.  Certainly they mean two
 different things on the I<left> side of the C<s///>.
+
+=head2 SEE ALSO
+
+"Mastering Regular Expressions" (see L<perlbook>) by Jeffrey Friedl.