Perl的幾個子字元(串)尋找例子代碼

來源:互聯網
上載者:User
1) 如何在一個字串中尋找某個字元出現的次數?
原文出處:http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q4.24.html
如果你想在一個字串中尋找字元(X)出現的次數,你可以用tr///這個函數、配合下面的方法來實現:
$string = “ThisXlineXhasXsomeXx’sXinXit”:$count = ($string =~ tr/X//);print “There are $count Xs in the string”;
2) 如何在一個字串中尋找某個子字串出現的次數?
上面的代碼對於你只尋找單個字元來說,是非常有效。然而,如果你試圖計算多個字元組成的子字串、在一個大字串中出現的次數,函數tr///就不起作用了。這個時候,我們就需要加一個while迴圈了:
$string = “-9 55 48 -2 23 -76 4 14 -44″;$count++ while $string =~ /-\d+/g;print “There are $count negative numbers in the string”;
3)Perl裡查詢某一個檔案裡某一個字串出現了多少行、以及包含該字串的行的內容
原文出處:http://www.perlmonks.org/?node_id=650671
我們可以用如下代碼實現,子過程retriver()進行讀檔案、尋找等操作。
use strict;use warnings;sub retriver();my @lines;my $lines_ref;my $count;$lines_ref = &retriver();@lines =@$lines_ref;$count = @lines;print “Count :$count\nLines\n”;print join “\n”,@lines;sub retriver(){    my [...]
相關文章

聯繫我們

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