From: A.M. K. <aku...@us...> - 2003-02-28 18:02:44
|
Update of /cvsroot/py-howto/pyhowto In directory sc8-pr-cvs1:/tmp/cvs-serv1992 Modified Files: regex.tex Log Message: Update the reference to the Friedl book, which no longer covers Python at all Index: regex.tex =================================================================== RCS file: /cvsroot/py-howto/pyhowto/regex.tex,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** regex.tex 19 Feb 2003 21:00:34 -0000 1.14 --- regex.tex 28 Feb 2003 18:02:40 -0000 1.15 *************** *** 3,12 **** % TODO: % Document lookbehind assertions, conditionals, (?>...) ! % Document findall method (once 1.5.2 is fairly widespread) % Better way of displaying a RE, a string, and what it matches % Show how to loop with search() % Mention optional argument to match.groups() % Unicode (at least a reference) - % Update reference to Friedl book \title{Regular Expression HOWTO} --- 3,11 ---- % TODO: % Document lookbehind assertions, conditionals, (?>...) ! % Document findall, finditer methods % Better way of displaying a RE, a string, and what it matches % Show how to loop with search() % Mention optional argument to match.groups() % Unicode (at least a reference) \title{Regular Expression HOWTO} *************** *** 1382,1390 **** The most complete book on regular expressions is almost certainly ! Jeffrey Friedl's \emph{Mastering Regular Expressions}, published by ! O'Reilly. Unfortunately, the Python material in this book dates from ! before the \module{re} module --- all the examples use the old ! \module{regex} module --- but it covers writing good regular ! expressions in great detail. \end{document} --- 1381,1389 ---- The most complete book on regular expressions is almost certainly ! Jeffrey Friedl's \citetitle{Mastering Regular Expressions}, published by ! O'Reilly. Unfortunately, it exclusively concentrates on Perl and ! Java's flavours of regular expressions, and doesn't contain any Python ! material at all. (The first edition covered the obsolete ! \module{regex} module.) \end{document} |