Perl
Text processing and scripting with Perl: regular expressions, file I/O, and CPAN modules.
Perl Subroutines
Feb 02, 2025Subroutines (subs) are Perl's functions. They collect all their arguments in the special @_ array, giving you great flexibility in how you handle parameters.
File I/O in Perl
Jan 26, 2025Perl makes reading and writing files straightforward. The three-argument form of open() is the modern, secure way to handle files.
Regular Expressions in Perl
Jan 19, 2025Regular expressions are built into Perl's core syntax. They let you match, extract, and transform text with concise, powerful patterns.
Scalars, Arrays, and Hashes
Jan 12, 2025Perl has three fundamental data structures: scalars (single values), arrays (ordered lists), and hashes (key-value maps). Their sigils ($, @, %) tell you which you are using.
Introduction to Perl
Jan 05, 2025Perl is a high-level, general-purpose scripting language famous for its text-processing power and flexible regular expression support.