Languages Features Creators CSV Resources Challenges Add Language
GitHub icon

Perl

Perl - Programming language

< >

Perl is a programming language created in 1987 by Larry Wall.

#10on PLDB 36Years Old 492.0kUsers
276Books 9Papers 170kRepos

Try now: Riju · TIO

Perl is a family of high-level, general-purpose, interpreted, dynamic programming languages. The languages in this family include Perl 5 and Perl 6. Though Perl is not officially an acronym, there are various backronyms in use, including "Practical Extraction and Reporting Language". Read more on Wikipedia...


Example from Riju:
print("Hello, world!\n");
Example from hello-world:
#!/usr/bin/perl print "Hello World\n";
# Hello world in perl print "Hello World!\n";
Example from Linguist:
#!/usr/local/bin/perl print "Perl\n"
Example from Wikipedia:
#!/usr/bin/perl use strict; use warnings; use IO::Handle; my ( $remaining, $total ); $remaining = $total = shift(@ARGV); STDOUT->autoflush(1); while ( $remaining ) { printf ( "Remaining %s/%s \r", $remaining--, $total ); sleep 1; } print "\n";

Keywords in Perl

_DATA_> else lock qw _>END_> elsif lt qx _>FILE_> eq m s _>LINE_> exp ne sub _>PACKAGE_ for no tr and foreach or unless cmp ge package until continue gt q while CORE if qq xor do le qr y

Language features

Feature Supported Token Example
Scientific Notation
Binary Literals
# 0b[01]+(_[01]+)*
Integers
# \d+(_\d+)*
Floats
# (?i)(\d*(_\d*)*\.\d+(_\d*)*|\d+(_\d*)*\.\d+(_\d*)*)(e[+-]?\d+)?
Hexadecimals
# 0x[0-9A-Fa-f]+(_[0-9A-Fa-f]+)*
Octals
# 0_?[0-7]+(_[0-7]+)*
Conditionals
While Loops
Print() Debugging print
Range Operator
# https://users.cs.cf.ac.uk/Dave.Marshall/PERL/node38.html
@array = (1..10);
Operator Overloading
Multiple Inheritance
File Imports
use Digest::MD5 'md5_hex';
Directives
# In Perl, the keyword "use", which imports modules, can also be used to specify directives, such as use strict; or use utf8;
use utf8;
Here Document
Line Comments #
# A comment
MultiLine Comments =begin =cut
Comments
# This is a comment in perl
=begin comment
This is all part of multiline comment.
You can use as many lines as you like
These comments will be ignored by the 
compiler until the next =cut is encountered.
=cut
Partial Application
sub first-and-last ( $first, $last ) {
   say "Name is $first $last";
}
my &surname-smith = &first-and-last.assuming( *, 'Smith' );
&surname-smith.( 'Joe' ); # OUTPUT: «Name is Joe Smith␤» 
Regular Expression Syntax Sugar
print "Hello World".match(/\w/)
Strings
"hello world"
Case Insensitive Identifiers X
Semantic Indentation X

Books about Perl on goodreads

title author year reviews ratings rating
Programming Perl Tom Christiansen 1991 52 2104 4.04
Advanced Perl Programming (Perl Series) Sriram Srinivasan 1997 1 201 3.93
Effective Perl Programming Joseph Hall 1997 10 103 4.22
Perl for Dummies Paul E. Hoffman 1997 5 48 3.42
The Perl CD Bookshelf: Perl in a Nutshell/Programming Perl, 2nd Edition/Perl Cookbook/Advanced Perl Programming/Learning Perl, 2nd Edition/Learning Perl on WIN32 Systems O'Reilly Media Inc. 1999 0 27 4.11
Programming the Perl DBI Tim Bunce 2000 3 77 3.47

Books about Perl from ISBNdb

title authors year publisher
Perl by Example (4th Edition) Quigley, Ellie 2007 Prentice Hall
Network Programming with Perl Stein, Lincoln D. 2000 Addison-Wesley Professional
Perl 5 Unleashed Husain, Kamran and Breedlove, Robert F. 1996 Sams
Perl and CGI for the World Wide Web, Second Edition Castro, Elizabeth 2001 Peachpit Press
Beginning Perl Poe, Curtis 2012 Wrox
Perl and CGI for the World Wide Web (Visual QuickStart Guide) Castro, Elizabeth 1998 Peachpit Press
Advanced Perl Programming (Perl Series) Srinivasan, Sriram 1997 O'Reilly Media
Mastering Regular Expressions: Powerful Techniques for Perl and Other Tools (Nutshell Handbooks) Friedl, Jeffrey E. F. 1997 O'Reilly Media
Perl 5 Developer's Guide Peschko, Ed and Dewolfe, Michelle 1998 Computing McGraw-Hill
Perl Pocket Reference: Programming Tools Vromans, Johan 2011 O'Reilly Media
Intermediate Perl Randal L. Schwartz and Tom Phoenix and brian d foy 2006 O'Reilly Media
Effective Perl Programming: Writing Better Programs with Perl Hall, Joseph N. and Schwartz, Randal 1998 Addison-Wesley Professional
The Perl CD Bookshelf: Perl in a Nutshell/Programming Perl, 2nd Edition/Perl Cookbook/Advanced Perl Programming/Learning Perl, 2nd Edition/Learning Perl on WIN32 Systems O'Reilly Media, Inc. 1999 O'Reilly Media
Perl Core Language Little Black Book: The Essentials of the Perl Language Holzner, Steven 1999 Coriolis Group
Learning Perl (Nutshell Handbooks) Christiansen, Tom and Schwartz, Randal L. 1997 O'Reilly Media
Mastering Perl: Creating Professional Programs with Perl foy, brian d 2014 O'Reilly Media
Perl For Dummies Hoffman, Paul 2003 For Dummies
Mastering Perl/Tk: Graphical User Interfaces in Perl Lidie, Stephen and Walsh, Nancy 2002 O'Reilly Media
Sams Teach Yourself Perl in 24 Hours (3rd Edition) Pierce, Clinton 2005 Sams Publishing
Perl Programming For Medicine And Biology Jules J. Berman 2007 Jones & Barlett Learning
Instant Perl Modules Sparling, Douglas and Wiles, Frank 2001 McGraw-Hill Osborne Media
Professional Perl Development Arva, Adrian and Ellis, Joshua and Corliss, Arthur and Kobes, Randy and Wainwright, Peter and Wilcox, Mark and de Mauro, Pancrazio and Mauro, Pancrazio de and Oliver, Simon and Brown, Gavin 2001 Apress
The Perl CD Bookshelf, Version 3.0: 7 Bestselling Books on CD-ROM Includes a Bonus Book! Perl in a Nutshell, 2nd Edition O'Reilly & Associates 2002 O'Reilly Media
Perl CD Bookshelf 2.0 (Book & CD-ROM) Various Authors 2001 O'Reilly Media
The Web Wizard's Guide to Perl and CGI David A. Lash 2002 Addison-Wesley
Advanced Perl Programming: From Advanced to Expert "Rothwell, William ""Bo""" 2020 Apress
Perl 5 Pocket Reference Vromans, Johan 1998 O'Reilly Media
Perl Programming for Biologists Jamison, D. Curtis 2003 Wiley-Liss
Graphics Programming with Perl Verbruggen, Martien 2002 Manning Publications
Perl 6 Essentials Allison Randal and Dan Sugalski and Leopold Totsch 2003 O'Reilly Media
Weaving a Website: Programming in HTML, Java Script, Perl and Java Anderson-Freed, Susan 2001 Prentice Hall
Perl 5 Desktop Reference (A Nutshell Handbook) Vromans, Johan 1996 O'Reilly Media
Win32 Perl Programming: The Standard Extensions Roth, Dave 2001 Sams Publishing
Beginning Perl Programming: From Novice to Professional "Rothwell, William ""Bo""" 2019 Apress
Wicked Cool Perl Scripts: Useful Perl Scripts That Solve Difficult Problems Oualline, Steve 2006 No Starch Press
Perl Debugged Scott, Peter 2001 Addison-wesley
Perl Black Book: The Most Comprehensive Perl Reference Available Today Holzner, Steven 1999 Coriolis Group Books
Writing CGI Applications with Perl Meltzer, Kevin and Michalski, Brent 2001 Addison-Wesley Professional
Perl Black Book, 2nd Edition Holzner, Steven 2001 Coriolis Group
Win32 Perl Scripting: The Administrator's Handbook Roth, Dave 2000 Sams Publishing
Advanced programming in Perl for beginners Oria San Martin, Dorian 2016 CreateSpace Independent Publishing Platform
Teach Yourself Cgi Programming With Perl in a Week (Sams Teach Yourself) Herrmann, Eric 1996 Sams
Perl In Your Hands: For Beginners in Perl Programming S, Gokul Amuthan 2016 CreateSpace Independent Publishing Platform
Perl 5 for Dummies Hoffman, Paul 1997 Hungry Minds Inc
Learning Perl Tom Phoenix; Randal L. Schwartz 20010718 O'Reilly Media, Inc.
Combinatorial Pattern Matching Algorithms in Computational Biology Using Perl and R (Chapman & Hall/CRC Computational Biology Series) Valiente, Gabriel 2009 Chapman and Hall/CRC
Unix And Perl To The Rescue!: A Field Guide For The Life Sciences (and Other Data-rich Pursuits) Bradnam, Keith. 2012 Cambridge University Press
Cgi Developer's Resource: Web Programming in Tcl and Perl (Resource Series) Ivler, J. M. and Husain, Kamran 1997 Prentice Hall Ptr
Perl Cookbook Tom Christiansen; Nathan Torkington 20030821 O'Reilly Media, Inc.
Beginning Perl for Bioinformatics James Tisdall 20011022 O'Reilly Media, Inc.
Programming the Network with Perl Barry, Paul 2002 Wiley
Pro Perl Programming: From Professional to Advanced "Rothwell, William ""Bo""" 2020 Apress
Sams Teach Yourself Perl 5 For Windows Nt In 21 Days Till and David and Zhang and Tony 1997 Sams
Combinatorial Pattern Matching Algorithms in Computational Biology Using Perl and R (Chapman & Hall/CRC Computational Biology Series) Valiente, Gabriel 2009 Chapman and Hall/CRC
An Introduction to Language Processing with Perl and Prolog: An Outline of Theories, Implementation, and Application with Special Consideration of English, French, and German (Cognitive Technologies) Nugues, Pierre M. 2006 Springer
Perl Cookbook, Second Edition Christiansen, Tom and Torkington, Nathan 2003 O'Reilly Media
Programming Perl (3rd Edition) Wall, Larry and Christiansen, Tom and Orwant, Jon 2000 O'Reilly Media
Programming for Linguists: Perl for Language Researchers Hammond, Michael 2003 Wiley-Blackwell
Intermediate Perl: Beyond The Basics of Learning Perl Schwartz, Randal L. and foy, brian d and Phoenix, Tom 2012 O'Reilly Media
Beginning Perl Programming: From Novice to Professional "Rothwell, William ""Bo""" 2019 Apress
Perl Best Practices: Standards and Styles for Developing Maintainable Code Conway, Damian 2005 O'Reilly Media
Advanced Perl Programming: The Worlds Most Highly Developed Perl Tutorial Cozens, Simon 2005 O'Reilly Media
Beginning Perl for Bioinformatics James Tisdall 2001 O'Reilly Media
Programming the Perl DBI: Database programming with Perl Tim Bunce and Alligator Descartes 2000 O'Reilly Media
CGI Programming 101: Programming Perl for the World Wide Web, Second Edition Jacqueline Hamilton 2004 CGI101.com
Effective Perl Programming: Ways to Write Better, More Idiomatic Perl (Effective Software Development) Hall, Joseph N. and McAdams, Joshua A. and Foy, Brian D. 2010 Addison-Wesley Professional
Effective Perl Programming: Ways to Write Better, More Idiomatic Perl (Effective Software Development Series) Hall, Joseph and McAdams, Joshua and Foy, Brian 2010 Addison-Wesley Professional
Elements of Programming with Perl Johnson, Andrew L 1999 Manning Publications
Perl in A Nutshell: A Desktop Quick Reference (2nd Edition) Ellen Siever and Stephen Spainhour and Nathan Patwardhan 2002 O'Reilly Media
Mastering Perl for Bioinformatics James D. Tisdall 2003 O'Reilly Media
Data Munging with Perl Cross, David 2001 Manning Publications
Parsing with Perl 6 Regexes and Grammars: A Recursive Descent into Parsing Lenz, Moritz 2017 Apress
CGI Programming in C and Perl Boutell, Thomas 1996 Addison-Wesley Professional
Perl Hacks: Tips & Tools for Programming, Debugging, and Surviving "chromatic and Damian Conway and Curtis ""Ovid"" Poe" 2006 O'Reilly Media
Perl Graphics Programming: Creating SVG, SWF (Flash), JPEG and PNG files with Perl Wallace, Shawn 2002 O'Reilly Media
Perl and XML: XML Processing with Perl Ray, Erik T. and McIntosh, Jason 2002 O'Reilly Media
Scripting with Objects: A Comparative Presentation of Object-Oriented Scripting with Perl and Python Kak, Avinash C. 2008 Wiley
Perl How to Program Deitel, Harvey M. and Deitel, Paul J. and Nieto, Tem R. and McPhie, D. C. 2001 Prentice Hall
Perl 6 Fundamentals: A Primer with Examples, Projects, and Case Studies Lenz, Moritz 2017 Apress
Perl Testing: A Developer's Notebook: A Developer's Notebook Ian Langworth and chromatic 2005 O'Reilly Media
Perl Programming for the Absolute Beginner Ford, Jr. Jerry Lee 2006 Cengage Learning PTR
Programming Web Services with Perl Randy J. Ray and Pavel Kulchenko 2002 O'Reilly Media
PERL: PERL Programming for Beginners. Learn Programming PERL, 2019 Edition. (Step-by-Step PERL Programming) Publishing, Nexcod 2019 Independently published
Beginning Perl (Expert's Voice in Open Source) Lee, James 2010 Apress
Extending and Embedding Perl Tim Jenness and Simon Cozens 2002 Manning Publications
Practical Text Mining with Perl Bilisoly, Roger 2008 Wiley
Advanced Perl Programming: From Advanced to Expert "Rothwell, William ""Bo""" 2020 Apress
Sams Teach Yourself Perl in 21 Days (2nd Edition) Lemay, Laura 2002 Sams Publishing
Learning Perl Objects, References, and Modules Randal L. Schwartz and Tom Phoenix 2003 O'Reilly Media
Pro Perl Debugging Lester, Andy and Foley, Richard 2005 Apress
Computer Science & Perl Programming: Best of TPJ Jon Orwant 2002 O'Reilly Media
Programming Perl Christiansen, Tom and Schwartz, Randal L. and Wall, Larry 1996 O'Reilly Media
Mastering Perl brian d foy 2007 O'Reilly Media
Pro Perl Parsing Frenz, Christopher M. 2005 Apress
Perl Database Programming Michalski, Brent 2002 John Wiley &Sons
Learning Perl on Win32 Systems: Perl Programming in Win32 (Perl Series) Schwartz, Randal L. and Olson, Erik and Christiansen, Tom 1997 O'Reilly Media
Perl 6 Deep Dive: Data manipulation, concurrency, functional programming, and more Shitov, Andrew 2017 Packt Publishing
PERL in easy steps McGrath, Mike 2003 In Easy Steps Limited
Perl Scripting for Windows Security: Live Response, Forensic Analysis, and Monitoring Harlan Carvey and Jeremy Faircloth 2007 Elsevier Inc.
Games Diversions & Perl Culture: Best of the Perl Journal Jon Orwant 2004 O'Reilly Media
Perl 6 Quick Syntax Reference: A Pocket Guide to the Language, the Core Modules, and the Community Merelo, J.J. 2019 Apress
UNIX and Perl to the Rescue!: A Field Guide for the Life Sciences (and Other Data-rich Pursuits) Bradnam, Keith and Korf, Ian 2012 Cambridge University Press
Perl Pocket Reference, 4th Edition Vromans, Johan 2002 O'Reilly Media
Pro Perl Debugging: From Professional to Expert (Pro: From Professional to Expert) Lester, Andy and Foley, Richard 2006 Apress
Programming Perl (Nutshell Handbooks) Schwartz, Randal L. and Wall, Larry 1991 O'Reilly Media
Learning Perl (Nutshell Handbooks) Schwartz, Randal L. 1993 O'Reilly Media
Pro Perl Programming: From Professional to Advanced "Rothwell, William ""Bo""" 2020-02-29T00:00:01Z Apress
Writing Apache Modules with Perl and C: The Apache API and mod_perl MacEachern, Doug and Stein, Lincoln 1999 O'Reilly Media
Perl Scripting for Windows Security: Live Response, Forensic Analysis, and Monitoring Carvey, Harlan 2011 Syngress
Professional Perl Programming Simon Cozens 2001 Apress
Teach Yourself Cgi Programming With Perl 5 in a Week (Teach Yourself Series) Herrmann, Eric 1996 Sams
Perl Core Language Little Black Book, Second Edition Steven Holzner 2004 Paraglyph Press
Perl 6 and Parrot Essentials, Second Edition Allison Randal and Dan Sugalski and Leopold Toetsch 2004 O'Reilly Media
Teach Yourself Perl 5 in 21 Days (Sams Teach Yourself) Till, David 1996 Sams
Penetration Testing with Perl Berdeaux, Douglas 2014 Packt Publishing
Web Development with Apache and Perl Peterson, Theo and Petersen, Theo 2002 Manning Publications
Perl 5 Pocket Reference, 3rd Edition: Programming Tools (O'Reilly Perl) Vromans, Johan and Mui, Linda 2000 O'Reilly Media
Perl for Web Site Management: HTML Generation, Link Checking, Simple CGI, and More Callender, John 2001 O'Reilly Media
Perl for Exploring DNA LeBlanc, Mark D. and Dyer, Betsey Dexter 2007 Oxford University Press
Perl for the Web Radcliff, Chris 2001 Que Publishing
Perl Resource Kit -- UNIX Edition Siever, Ellen and Wall, Larry and Jepson, Brian and Futato, David and Patwardhan, Nathan 1997 O'Reilly Media
Perl 6 Deep Dive: Data manipulation, concurrency, functional programming, and more Shitov, Andrew 2017 Packt Publishing
Special Edition Using Perl 5 for Web Programming Harlan, David and Doyle, Paul and Healy, Matthew D. and Foghlu, Micheal O and Powers, Shelley 1996 Que Pub
Web Programming with Perl 5 Middleton, Bill and Deng, Brian and Kemp, Chris 1997 Sams
A Little Book on Perl Sebesta, Robert W. 1999 Prentice Hall
Perl 6 Now: The Core Ideas Illustrated with Perl 5 (Expert's Voice in Open Source) Walters, Scott 2004 Apress
Perl For Dummies? Hoffman, Paul 2000 For Dummies
Programming Perl for Geoscientists Oria San Martin, Dorian 2015 Lulu Publishing Services
Web Client Programming with Perl Wong, Clinton 1997 White Mane Pub. Co
Win32 Perl Programming: The Standard Extensions (The Mtp Windows Nt Professional Reference Series) Roth, Dave 1999 New Riders Pub
Perl Programmer's Interactive Workbook (Interactive Workbook (Prentice Hall)) Lowe, Vincent 1999-07-01T00:00:01Z Prentice Hall Ptr
On Perl: Perl for Students and Professionals Kalita, Jugal K. 2004 Universal Publishers
Perl 5 How-To Glover, Mike and Humphreys, Aidan and Weiss, Ed 1996 Waite Group Pr
Programming Web Graphics with Perl and GNU Softwar Shawn P. Wallace 1999-02-11T00:00:01Z O'Reilly Media
Learning PERL the Hard Way: Perl Programming for Beginners Downey, Allen B. 2009-03-20T00:00:01Z CreateSpace Independent Publishing Platform
Perl in a Nutshell Ellen Siever and Nathan Patwardhan and Spainhour, Stephen 1999 O'Reilly Media
Modern Perl Programming Saltzman, Michael 2002 Pearson P T R
Perl for Dummies Hoffman, Paul 1998 Hungry Minds Inc
Perl Programming Success In Day Key, Sam 2015 Lulu.com
Discover Perl 5 (Discover (Idg Books Worldwide, Inc.).) Barkakati, Nabajyoti 1997 John Wiley & Sons Inc
Programming Perl 5.0 Cgi Web Pages for Microsoft Windows Nt (PC Magazine (New York, N.Y.).) Hagey, Jonathan 1996 Ziff Davis Pr
An Introduction to Language Processing with Perl and Prolog: An Outline of Theories, Implementation, and Application with Special Consideration of English, French, and German (Cognitive Technologies) Nugues, Pierre M. 2010 Springer
Perl Nexcod Publishing 2019 Independently Published
Programming Perl Christiansen 2022
PERL PROGRAMMING Toliver, Felicia 2019-11-21T00:00:01Z Independently published
Perl Programming For Bioinformatics Harshawardhan P. Bal and Bal 2003 Tata Mcgraw-hill Education
Extreme Programming with Perl Nagler, Rob 2005 O'Reilly Media
PROGRAMMING PERL 3/E WALL NA
Effective Perl Programming 2/e: Ways to Write Better, More Idiomatic Perl Hall 2011T Pearson Education
60 Minute Guide to Cgi Programming With Perl 5 Farrell, Robert 1996 John Wiley & Sons Inc
Perl Martin C. Brown 1999 Computing Mcgraw-hill
Applied Perl William Weinman New Riders
Intermediate Perl Randal L. Schwartz; brian d foy; Tom Phoenix 20120726 O'Reilly Media, Inc.
Programming Perl Larry Wall and Tom Christiansen and Jon Orwant 2000 San Val
Pro Perl Peter Wainwright 20061101 Springer Nature
Mastering Perl brian d foy 2007 O'reilly Media, Inc.
Applied Perl Peter Williams 2001 Wiley
Mastering Perl brian d foy 20140109 O'Reilly Media, Inc.
Mastering Perl brian d foy 20140109 O'Reilly Media, Inc.
Learning Perl Tom Phoenix 20010718 O'Reilly Media, Inc.
Programming Perl Larry Wall; Steve Talbot; Randal L. Schwartz; Tom Christiansen
Perl Guide Scott Marino 20080908 BarCharts Inc.
Learning Perl Randal L. Schwartz; brian d foy; Tom Phoenix 20210629 O'Reilly Media, Inc.
Beginning Perl Curtis Poe 2012-09-27 Wiley
Programming Perl Tom Christiansen 20120217 O'Reilly Media, Inc.
Programming Perl Tom Christiansen; brian d foy; Larry Wall; Jon Orwant 20120217 O'Reilly Media, Inc.
Perl Debugged Peter Scott 20140430 Pearson Technology Group
Learning Perl Randal L. Schwartz; brian d foy; Tom Phoenix 20161006 O'Reilly Media, Inc.
Learning Perl Randal L. Schwartz; Tom Phoenix; brian d foy 20080627 O'Reilly Media, Inc.
Beginning Perl Curtis Poe 9/4/12 Wiley Professional Development (P&T)
Learning Perl Randal L. Schwartz; Tom Phoenix; brian d foy 20080627 O'Reilly Media, Inc.
Perl Cookbook Tom Christiansen; Nathan Torkington 20030821 O'Reilly Media, Inc.
Beginning Perl James Lee 20100614 Springer Nature
Intermediate Perl Randal L. Schwartz; brian d foy; Tom Phoenix 20120726 O'Reilly Media, Inc.
Perl One-Liners Peteris Krumins 20131126 Random House Publishing Services
Advanced Perl Programming Sriram Srinivasan / Larry Wall / Tom Christiansen / Ronald Schwartz 2000
XML and Perl Mark Riehl and Ilya Sterin and Llya Sterin 2002 Sams
Perl Programming Essentials Software Alchemy
Advanced Perl Programming Rob Roselius 2000 D D C Pub
Basic Perl Programming Loy and Marc Safari Press
Professional Perl Programming Peter C. Wainwright and Arthur Corliss and Aldo Calpini and Simon Cozens and J. J. Merelo-Guervos 2001 Wrox Press, Inc.
Perl by Example Ellie Quigley 20150102 Pearson Technology Group
Perl Pocket Reference Johan Vromans 20020719 O'Reilly Media, Inc.
Advanced Perl Programming Sriram Srinivasan; Andy Oram
Advanced Perl Programming Sriram Srinivasan and Andy Oram 1997 O'Reilly Media, Incorporated
Programming In Perl Behrouz A. Forouzan and Richard F. Gilberg 2005
Advanced Perl Programming Not Available
Perl Pocket Reference Johan Vromans 20110719 O'Reilly Media, Inc.
Perl Pocket Reference Johan Vromans 20110719 O'Reilly Media, Inc.
Higher-Order Perl Mark Jason Dominus 20050331 Elsevier S & T
Perl and XML Erik T. Ray 20020425 O'Reilly Media, Inc.
Perl Pocket Reference Johan Vromans 20020719 O'Reilly Media, Inc.
Perl Graphics Programming Shawn Wallace 20021219 O'Reilly Media, Inc.
Wall:programming Perl 2e Longman Higher Education
Perl Graphics Programming Shawn Wallace 20021219 O'Reilly Media, Inc.
Perl For Dummies Paul Hoffman 2011-05-09 Wiley
Perl Best Practices Damian Conway 20050712 O'Reilly Media, Inc.
Think Perl 6 Laurent Rosenfeld; Allen B. Downey 20170508 O'Reilly Media, Inc.
Perl 5 complete Peschko, Ed and DeWolfe, Michele McGraw-Hill
Advanced Perl Programming Simon Cozens 20050628 O'Reilly Media, Inc.
Perl and XML Erik T. Ray; Jason McIntosh 20020425 O'Reilly Media, Inc.
Advanced Perl Programming Simon Cozens 20050628 O'Reilly Media, Inc.
Pro Perl Parsing Christopher M. Frenz 20061107 Springer Nature
Learning Perl 6 brian d foy 20180824 O'Reilly Media, Inc.
Perl Best Practices Damian Conway 20050712 O'Reilly Media, Inc.
Perl Power!: A Jumpstart Guide To Programming With Perl 5 Michael Schilli 1999 Longhorn Pr
Programming The Perl Dbi Alligator Descartes / Tim Bunce 2000
Cgi Programming With Perl Ziff-Davis Education 1998
Perl Programming (5 Days) Jeff Howell 2000 D D C Pub
Perl Programming Interview Questions, Answers, And Explanations: Perl Programming Certification Review Itcookbook 2006 Equity Press
Perl 5 programmer's notebook Jesse Feiler 1999/08/24 Upper Saddle River, N.J. Prentice Hall PTR, c2000.
Computer Science & Perl Programming Jon Orwant 20021104 O'Reilly Media, Inc.
Perl for exploring DNA Leblanc, Mark D. , 1962- 2007 Oxford University Press
Mastering Algorithms with Perl Jarkko Hietaniemi 19990818 O'Reilly Media, Inc.
Beginning Perl Web Development Steve Suehring 20061122 Springer Nature
Programming the Perl DBI Tim Bunce; Alligator Descartes 20000204 O'Reilly Media, Inc.
Mastering Algorithms with Perl Jarkko Hietaniemi; John Macdonald; Jon Orwant 19990818 O'Reilly Media, Inc.
CGI Programming with Perl Scott Guelich 20000629 O'Reilly Media, Inc.
Mastering Perl for Bioinformatics James Tisdall 20030925 O'Reilly Media, Inc.
Beginning Perl for Bioinformatics James Tisdall 20011022 O'Reilly Media, Inc.
Penetration Testing with Perl Douglas Berdeaux 2014-12-30 Packt Publishing
Perl programming for biologists Hoboken, N.J. : Wiley-Liss, c2003.
Bioinformatics Biocomputing and Perl Michael Moorhouse and Paul Barry 2005-09-27 Wiley
Programming The Perl Dbi Cambridge, Ma : O'reilly, 2000.
Games, Diversions & Perl Culture Jon Orwant 20030522 O'Reilly Media, Inc.
Learning Perl Student Workbook foy, brian d 20080514 O'Reilly Media, Inc.
Programming The Perl Dbi Tim Bunce and Jeff Zucker 2007
CGI Programming with Perl Scott Guelich; Shishir Gundavaram; Gunther Birznieks 20000629 O'Reilly Media, Inc.
Games, Diversions & Perl Culture Jon Orwant 20030522 O'Reilly Media, Inc.
Perl in a Nutshell Nathan Patwardhan; Ellen Siever; Stephen Spainhour 20020603 O'Reilly Media, Inc.
Programming the Perl DBI Tim Bunce 20000204 O'Reilly Media, Inc.
Computer Science & Perl Programming Jon Orwant 20021104 O'Reilly Media, Inc.
Perl in a Nutshell Nathan Patwardhan; Ellen Siever; Stephen Spainhour 20020603 O'Reilly Media, Inc.
Mastering Perl for Bioinformatics James Tisdall 20030925 O'Reilly Media, Inc.
Web Client Programming With Perl Wong, Clinton. 1997 O'reilly
Web Client Programming With Perl Cambridge ; O'reilly, C1997.
Programming Web Services with Perl Randy J. Ray; Pavel Kulchenko 20021219 O'Reilly Media, Inc.
Practical Text Mining with Perl Roger Bilisoly 2011-09-20 Wiley
Perl Testing: A Developer's Notebook Ian Langworth; Chromatic 20050714 O'Reilly Media, Inc.
Perl Testing: A Developer's Notebook Ian Langworth 20050714 O'Reilly Media, Inc.
Writing Perl Modules for CPAN Sam Tregar 20020809 Springer Nature
Programming Cocoa Applications With Perl Sugalski, Dan O'reilly Media
Programming the Network with Perl Paul Barry 2003-01-10 Wiley
Learning Perl Objects, References, and Modules Randal L. Schwartz; Tom Phoenix 20030609 O'Reilly Media, Inc.
Perl And Cgi Programming Starter Kit Simon & Schuster 1996 Simon & Schuster
Perl Programming For The Absolute Beginner Andy Harris 2001
Programming Perl In The .net Environment Yevgeny Menaker and Michael Saltzman and Robert J. Oberg 1902 Addison-wesley Professional
Perl Cgi Programming - No Experience Required Erik Strom 1998 Wiley & Sons, Incorporated, John
Learning Perl Objects, References, and Modules Randal L. Schwartz 20030609 O'Reilly Media, Inc.
UNIX and Perl to the Rescue! Keith Bradnam; Ian Korf 20120719 Cambridge University Press
UNIX and Perl to the Rescue! Keith Bradnam; Ian Korf 20120719 Cambridge University Press
Programming for Linguists: Perl for Language Michael Hammond 2003 Wiley, John & Sons, Incorporated
Perl 254 Success Secrets - 254 Most Asked Questions On Perl - What You Need To Know Janice Randolph 20140316 Emereo
Perl Programming Success In A Day: Beginners Guide To Fast, Easy, And Efficient Learning Of Perl Programming Sam Key 2015-07-21 Createspace Independent Publishing Platform
Perl 5 Windows Nt Programming (using Series) Mike Mcmillan 1997 Macmillan Technical Pub
Perl Programming For Nt Blue Book: The Quickest Path To Expertise In Nt Administration Scripting Using Perl Michael Mcmillan and James Sutherland 1999 Coriolis Group Books
Writing Apache Modules With Perl And C Stein, Lincoln D. , 1960- 1999 O'reilly
Perl Developer's Guide (book/cd-rom Package) Ed S. Peschko and Ed Peschko and Michele Dewolfe and Michelle DeWolfe 2000 Mcgraw-hill Professional
Real World SQL Server Administration with Perl Linchi Shea 2003 APRESS
Using Perl 5 For Web Programming, Special Edition 1996
Tuomas J. Lukka's Object-oriented Programming In Perl Tuomas J. Lukka 2000
Perl Programming For Biologists: Hands-on Tools For Bioinformatics Unknown 2002
Perl Programming Interview Questions You'll Most Likely Be Asked Vibrant Publishers 2012 Createspace Independent Publishing Platform
Scientific Database And Programming Examples Using Php, Mysql, Xml, Matlab, Python, Perl: Using Php, Mysql, Xml, Matlab, Python, Perl (paperback Or Softback) Cheung and K. Y. 2011 Xlibris Corporation 9/27/2011
Relational Database Programming for the Web with Perl and CGI Brian Shensky July 2000
Scripting with Objects: A Comparative Presentation of Object-Oriented Scripting with Perl and Python Avinash C. Kak 2008-05-15 Wiley Global Research (STMS)
Unix And Perl To The Rescue!: A Field Guide For The Life Sciences (and Other Data-rich Pursuits) Bradnam, Keith. 2012 Cambridge University Press
Open Source: The Wiki Way: Quick Collaboration On The Web, Postgresql: Introduction And Concepts And Network Programming With Perl Package Momjian 2001
Array Programming Languages: FORTRAN, APL, Gnu Octave, J, Mathematica, MATLAB, Nial, Scilab, IDL, Supercollider, K, Numpy, Perl Data Language Books and LLC and Group 2010
An Introduction To Language Processing With Perl And Prolog: An Outline Of Theories, Implementation, And Application With Special Consideration Of English, French, And German Nugues, Pierre M. (author.) Springer Berlin Heidelberg,

Publications about Perl from Semantic Scholar

title authors year citations influentialCitations
Programming for Linguists: Perl for Language Researchers Michael Hammond 2002 20 0
Perldoop: Efficient execution of Perl scripts on Hadoop clusters J. Abuín and J. C. Pichel and T. F. Pena and Pablo Gamallo and Marcos Garcia 2014 6 0
Quantitative Linguistic Computing with Perl Haoda Feng 2015 3 0
VECT: an automatic visual Perl programming tool for nonprogrammers. Hui-Hsien Chou 2005 2 0
A newly developed free software tool set for averaging electroencephalogram implemented in the Perl programming language S. Suwazono and H. Arao 2020 2 0
Joint Application of Perl Scripts and MCNPX in Solving the Dynamic-Geometry Related Problems in Proton Beam Radiotherapy (Selected Papers of the Joint International Conference of Supercomputing in Nuclear Applications and Monte Carlo : SNA + MC 2010) F. Guan and J. Poston and L. Braby 2011 1 0
Running Perl 6 J. Merelo 2019 1 0
PERL PROGRAMMING FOR BIOLOGISTS, by D. Curtis Jamison, Wiley, Hoboken, 2003, ISBN 0-471-43059-5, ix + 191 pp. (Pbk, £27.95) A. Andrew 2004 1 0
A Study on Perl Programming Language Aided Informetrics Chen Xin Chen Tun 2006 1 0
php.html · perl.html · matlab.html

View source

- Build the next great programming language · Search · Day 213 · About · Blog · Acknowledgements · Traffic · Traffic Today · GitHub · feedback@pldb.com