為Java程式員準備的10分鐘Perl教程_perl

來源:互聯網
上載者:User

1.從基礎開始

不像java,Perl不需要“main”方法作為進入點。要運行一個簡單的Perl程式如下:

複製代碼 代碼如下:

# comment starts with "#"
# the name is hello.pl
print "Hello Perl!";

只需執行:

perl hello.pl

2. 日期類型

在Perl中的日期類型是非常簡單,它有3種類型:標量,數組和Hash。

標是一個單值,它基本上可以是任何其他比數組或雜湊。
數組是一個數組,可以包含不同類型的元素,如整數,字串。

雜湊基本上是像Java的HashMap中。

將下面的代碼結合所有的使用方式。

複製代碼 代碼如下:

#claim a hash and assign some values
my %aHash;
$aHash{'a'}=0;
$aHash{'b'}=1;
$aHash{'c'}=2;
$aHash{'d'}=3;
$aHash{'e'}=4;

#put all keys to an array
my @anArray = keys (%aHash);

#loop array and output each scalar
foreach my $aScalar (@anArray){
 print $aScalar."\n";
}

輸出結果:

複製代碼 代碼如下:

e
c
a

d

如果你想對數組進行排序,你可以簡單地使用類似下面的排序功能:

複製代碼 代碼如下:

foreach my $aScalar (sort @anArray){
 print $aScalar."\n";
}

3. 條件、迴圈運算式

Perl為條件和迴圈語句準備了if, while, for, foreach等關鍵字,這與Java非常類似(switch除外)。

詳情請見下面的代碼:

複製代碼 代碼如下:

#if my $condition = 0;
if( $condition == 0){
    print "=0\n";
}
elsif($condition == 1){
    print "=1\n";
}
else{
    print "others\n";
}

 
#while while($condition < 5){
    print $condition;
    $condition++;
}
for(my $i=0; $i< 5; $i++){
    print $i;
}

#foreach my @anArray = ("a", 1, 'c');
    foreach my $aScalar (sort @anArray){
        print $aScalar."\n";
}

4.檔案的讀寫

下面這個例子向我們展示了如何讀寫檔案。這裡請注意">"和">>"之間的區別,">>"在檔案末尾追加內容,">"建立一個新的檔案儲存資訊。

複製代碼 代碼如下:

#read from a file
my $file = "input.txt";
open(my $fh, "<", $file) or die "cannot open < $file!";
while ( my $aline = <$fh> ) {
    #chomp so no new line character
    chomp($aline);
    print $aline;
}

close $fh;

# write to a file
my $output = "output.txt";
open (my $fhOutput, ">", $output) or die("Error: Cannot open $output file!");
print $fhOutput "something";
close $fhOutput;

5.Regex

Perl中有兩種使用Regex的方法:m和s。

下面的代碼在$str上應用了Regex。

複製代碼 代碼如下:
$str =~ m/program<SPAN>(</SPAN>creek|river)/

如果$str的內容是“programcreek”,運算式將會返回true。這也可以被用於條件判斷或迴圈。 
 

6.傳值/引用的文法

在Perl中沒有必要定義方法/函數,但如果你這麼做了,那將大大提高代碼的模組化和可充用性。但我們需要對參數的傳遞非常小心。

你可以直接傳遞一個標量,但如果傳遞的是數組或雜湊類就需要特別的當心。

數組:

複製代碼 代碼如下:

my @testArray = (1, 3, 2);

#In sub sub processArrayByReference($) {
    my $arrayref = shift;
    my @array    = @$arrayref;
    #...
}

#In sub processarray: sub processArrayByValue($){
    my @array = @_;
 #...
}

processArrayByValue(@testArray);
processArrayByReference( \@testArray );

哈系類:

複製代碼 代碼如下:

sub printHash($) {
my %hash = %{ shift() };
for my $key ( sort keys %hash ) {
    my $value = $hash{$key};
    print "$key => $value\n";
}
}

printHash(\%twoLettersCount);

7.一些執行個體

1).遍曆字串中的每個字元。

複製代碼 代碼如下:

my @lineCharArray = split('',$aline);
foreach my $character (@lineCharArray){
    print $character."\n";
}

2).建立一個包含26個字母的數組。
你可以簡單地實現這個功能並且無需迴圈26次。

複製代碼 代碼如下:

my @charArray = ('a'..'z' );
my @twoCharArray = ('aa'..'zz');

以上是第一個版本的“10分鐘”,我還將根據評論持續更新本文。

原文見:http://www.programcreek.com/2012/09/10-minutes-perl-tutorial-for-java-developer/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.