perl的格式化輸出及chomp的重要性分析

來源:互聯網
上載者:User

複製代碼 代碼如下:#!/bin/perl
print "please input some lines,then press Ctrl+Z. \n";
chomp(@s=<STDIN>);
print "1234567890"x 3 ."\n";#做為輸出結果的一個尺規
foreach $s(@s)
{
printf "%20s\n",$s;#輸出的格式為靠右對齊,所佔空間為20個字元
}

輸出結果:
F:\>perl\a.pl
please input some lines,then press Ctrl+Z.
how are you
fine,thank you
^Z
123456789012345678901234567890
how are you#u在第20個字元處
fine,thank you

#------------------------

沒有chomp的程式:

複製代碼 代碼如下:#!/bin/perl

print "please input some lines,then press Ctrl+Z. \n";
@s=<STDIN>;
print "1234567890"x 3 ."\n";
foreach $s(@s)
{
printf "%20s\n",$s;
}

輸出結果:
F:\>perl\a.pl
please input some lines,then press Ctrl+Z.
how are you
fine,thank you
^Z
123456789012345678901234567890
how are you#u在第19個字元處

fine,thank you

來觀察下有什麼不同,如果沒有用chomp,輸出的結果不僅中間有空格,並且可以發現最後的字元卻在第9上,相當於在第19個字元處。這是因為perl把a newline 當做一個字元。

第二部分:

如果我們自己指定字串的寬度,那麼程式如下:

複製代碼 代碼如下:#!/bin/perl
print "Please input column width.\n";
chomp($width=<>);#建立了一個變數。這裡同樣要注意chomp的應用,如果沒有chomp,我們會得不到我們想要的結果。
print "please input some lines,then press Ctrl+Z. \n";
chomp(@s=<STDIN>);
print "1234567890"x7 ."\n";
foreach $s(@s)
{
printf "%${width}s\n",$s;在這裡引用了這個變數,因為變數名預設取最大的字元長度,所有這裡我們用{}來界定變數的名稱。
}

輸出結果:
F:\>perl\a.pl
Please input column width.
30
please input some lines,then press Ctrl+Z.
how are you
fine,thank you
^Z
1234567890123456789012345678901234567890123456789012345678901234567890
how are you
fine,thank you

下面是沒有width=<>,沒有經過chomp的話,會出現如下結果:
F:\>perl\a.pl
Please input column width.
30
please input some lines,then press Ctrl+Z.
how are you
fine,thank you
^Z
1234567890123456789012345678901234567890123456789012345678901234567890
%30#這裡的30因為沒有去掉轉行符,所有是30+轉行符,得到了這種結果

%30
s

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.