php中統計字串中每種字元的個數並排序的3種方法

來源:互聯網
上載者:User
3種方法,統計字串中每種字元的個數並排序,多種解法喲~ str_split()函數很重要

代碼如下:

<?php //這個方法純粹是背函數,不解釋; function countStr($str){ $str_array=str_split($str); $str_array=array_count_values($str_array); arsort($str_array); return $str_array; } //以下是例子; $str="asdfgfdas323344##$\$fdsdfg*$**$*$**$$443563536254fas"; print_r(countStr($str)); ?>
<? //這個方法有些資料結構的思想,不過還是很好理解的:) function countStr2($str){ $str_array=str_split($str); $result_array=array(); foreach($str_array as $value){//判斷該字元是否是新出現的種類,是的話就設定為1,不是的話就自加; if(!$result_array[$value]){ $result_array[$value]=1; }else{ $result_array[$value]++; } } arsort($result_array); return $result_array; } $str="asdfgfdas323344##$\$fdsdfg*$**$*$**$$443563536254fas"; var_dump(countStr2($str)) ?>
<?php //這個方法純粹是解法一的蹩腳版本,先找出所有字元的總類,然後在一個一個用substr_count函數統計。 function countStr3($str){ $str_array=str_split($str); $unique=array_unique($str_array); foreach ($unique as $v){ $result_array[$v]=substr_count($str,$v); } arsort($result_array); return $result_array; } $str="asdfgfdas323344##$\$fdsdfg*$**$*$**$$443563536254fas"; var_dump(countStr3($str)); ?>

*無論是用哪一個方法,都要用到str_split函數,所以說,這個函數很重要哦~

聯繫我們

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