Guide practice of Perl

Source: Internet
Author: User
Tags sigil
#!/usr/bin/perluse strict;use warnings;#This is a practice of perl, as which shows with below perl code...codes.print "Hello, world!\n";my $animal = "camel\n";my $answer = 42;printf $animal;print "The animal is $animal\n";print "The square of $answer is ", $answer * $answer, "\n";print;my @test = ("t1", "t4", "t3");print $test[0], $test[1], $test[$#test], "\n";print "@test\n";my @sorted = sort @test;print "@sorted\n";my @backwards = reverse @test;print "@backwards\n";my %fcolor = (  apple => "red",  banana => "yellow",);my $apple = $fcolor{"apple"};print "apple color is $apple. \n";my @fruits = keys %fcolor;my @colors = values %fcolor;print "list fruits: @fruits. \n";print "list colors: @colors. \n";my $variables = {  scalar => {    desc => "sigle item",    sigil => '$',  },  array => {    desc => "ordered list of items",    sigil => '@',  },  hash => {    desc => "key/value pairs",    sigil => '%',  },  };print "scalar begin with a $variables->{'scalar'}->{'sigil'}. \n";print "array begin with a $variables->{'array'}->{'sigil'}. \n";print "hash begin with a $variables->{'hash'}->{'sigil'}. \n";my $x = "x";my $some_condition = 1;if ($some_condition) {  my $y = "y";  print $x;  print $y;}print $x;#print $y;print "\n";print "unless condition.\n" unless(0);until (1) {  print "while condition.\n";};foreach (@test) {  print "array element is $_\n";}print "array element is $test[$_]\n" foreach 0 .. $#test;foreach my $key (keys %fcolor) {  print "The value of $key is $fcolor{$key} \n";}my $a = 1;$a += 1;print "$a\n";$a -= 1;print "$a\n";$a .= "x";print "$a\n";open(my $in, "<", "input.txt") or die "can't open input.txt: $!\n";#my $line = <$in>;#my @lines = <$in>;#print "$line";#print "@lines";print stderr "stderr test.\n";while (<$in>) {  print "$_";}print "\n";close $in or die "$in: $!";open(my $out, ">", "output.txt") or die "can not open output.txt. \n";print $out "hello world!\nWrite this info into output.txt. \n";close $out or die "$out: $!";=podwhile(<>) {    next if /^$/;    last if (/q/);  print;}=cutmy $email = "hk.mars\@aol.com";if ($email =~ /([^@]+)@(.+)/) {  print "username is $1 \n";  print "hostname is $2 \n";}#subroutinessub loger {  my $logmessage = shift;  open my $logfile, ">>", "my.log" or die "can not open my.log.$!";  print $logfile $logmessage;}loger("hello loger! \n");sub square {  my $num = shift;  my $sq;  $sq = $num * $num;  return $sq;}my $sq = square(5);print "the square result of 5 is $sq \n";#OO Perl#Using Perl modules#The end of this practice, let's start to write project...now...
Write abve Perl codes into "e1.pl" file or any name as you want, and executes it on the shell, below is the result shown:

Yet, Perl is so easy as C. I am so expected to start the web project using Perl. I guess only need one week to hack a website done.

Mars

Guide practice of Perl

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.