Difference between revisions of "Perl"

From Dreamwidth Notes
Jump to: navigation, search
(added additional resources)
(+ book: Mastering Regular Expressions)
Line 9: Line 9:
 
* [http://search.cpan.org/ Module documentation]
 
* [http://search.cpan.org/ Module documentation]
 
* [http://faq.perl.org/ FAQ]
 
* [http://faq.perl.org/ FAQ]
 +
 +
== Regular Expressions ==
 +
 +
Perl programmers tend to make extensive use of regular expressions, but they are also used in many other tools (eg vim, less, grep).
 +
 +
* Jeremy Friedl's book [http://www.amazon.com/Mastering-Regular-Expressions-Jeffrey-Friedl/dp/0596528124/ Mastering Regular Expressions] is an excellent primer.
  
 
[[Category: Development]]
 
[[Category: Development]]

Revision as of 20:30, 13 February 2012

Beginning programming in Perl

Perl Documentation

Regular Expressions

Perl programmers tend to make extensive use of regular expressions, but they are also used in many other tools (eg vim, less, grep).