Perl

interpreted programming language first released in 1987 From Wikipedia, the free encyclopedia

Remove ads

Perl is a programming language invented by Larry Wall to process text. The programming language has been changed many times to do some other things. Some of these things are tasks like making web pages show information in a better way than before, or take information and show it in a way that makes more sense to people. Perl code is written using some symbols besides letters and numbers.

Quick Facts Paradigm, Designed by ...
Remove ads
Remove ads

Usage

Perl is very good at searching through text looking for patterns, which lets people find words that they may be looking for, or also let people find words they are looking for, and change them with different words much more quickly than they would if they had to do it one word at a time.

Perl is also a high-level programming language. A high-level language has advanced features which let the programmer tell the computer what to do without having to worry about how the computer is going to do it as compared to low-level programming languages which often require more programmer effort.

Remove ads

Example

An example Hello World program in Perl:

say 'Hello World!'

You can use variables in Perl.

A variable is a box where you can put items. In Perl, some variables starts with their own sigil. A sigil is the way to tell the Perl interpreter about what type of variable you are using. Variables can be scalar, array, hash, handle, regular expression, typeglob or subroutine.

For example:

my $a_scalar = 2;
my $b = 5.29 ;
my $c = "a string";
my $d = 'another';
my @e = ($b,3,4,$c,$d);
my %f = ('a'=>$b,'cad'=>'pqr',$c=>$d);
Remove ads

Perl packages

The Comprehensive Perl Archive Network, aka CPAN, hosts a large number of extensions to Perl which may be downloaded for free.

References

Loading content...

Other websites

Loading content...
Loading related searches...

Wikiwand - on

Seamless Wikipedia browsing. On steroids.

Remove ads