Perl



Perl Code Examples Parsing Text

Perl Code Examples Parsing Text

Commonly used parsing techniques - Analysis and dissection on Commonly used parsing techniques
Manning: Data Munging with Perl - Whatever you’d like to do with Manning: Data Munging with Perl
Parsing text file line by line - LinuxQuestions.org - That does it for this special report. Parsing text file line by line - …

Perl Data Structures

Perl Data Structures

Saving Data Structures (Programming Perl) - Obviously, some choices are better than others Saving Data Structures (Programming Perl)
Multileval data structures, tie, and indirection - Perl - Details will be fleshed out Multileval data structures, tie, and indirection - Perl
Lesson 10: Perl References and Advanced Data Structures - We will see …

Socket Programming - Java C++ Windows Unix

Socket Programming - Java C++ Windows Unix

dpBasics : Java Socket Programming - A final requirement is that the solutions in the areas must coexist - dpBasics : Java Socket Programming
Programming UNIX Sockets in C - Frequently Asked Questions - Indeed somebody did it ! Programming UNIX Sockets in C - Frequently Asked Questions
An Introduction to …

Essential Perl Code Snippets

Essential Perl Code Snippets

Delete Files in Bulk

unlink <*.html>;

Get File Text in Array and String

open(FM,”main_sidebar.txt”);
my @menu_txt=<FM>;
close(FM);
my $menu=join(”",@menu_txt);

Check if Line Number Equal To 1

if ($. == 1) {
chomp;
}