0
0

More than 3 years have passed since last update.

【PHP】文字列の中に特定の文字がいくつ含まれているのか

Posted at

文字列の中に特定の文字がいくつ含まれているのか?

文字列を与えられ、その中にある特定の文字の数をカウントしたい。
そんな時は

 echo mb_substr_count("文字列", "カウントしたい文字");

これで文字が出現する回数をカウントできる。

例えば、

 echo mb_substr_count("aaaabbbb", "a");

とすると、4が出力される。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0