4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Ruby】特定の文字をカウントするメソッド

Posted at

概要

下記の問題が出された際、間違ったため備忘録として残します。
【問題】
任意の文字列がいくつあるか数えてその数を出力するメソッドを作成して下さい

私の回答

私は下記のような回答をしてしまいました。
※ちなみに、間違いです:sweat:

Ruby
def count_hi(word)
  puts word.count('hi')
end

word = "hi!hideyuki. hidemi."
count_hi(word)

本来は「3」が正解ですが、上記記述だと「8」となってしまいます:expressionless:

正解

Ruby
def count_hi(word)
  puts word.scan('hi').length
end

word = "hi!hideyuki. hidemi."
count_hi(word)

上記、記述だと「8」と表示されます:relaxed:

解説

countは"hi"ではなく、"h","i"それぞれの個数をカウントしてしまいます。

scanはマッチした部分文字列の配列を返します。
そのため、lengthが無いと下記のような表示となります。

Ruby
puts word.scah('hi')
# hi hi hi と表示されます

lengthは本来は文字列の文字数を返しますが、word.scan('hi').lengthとすることで、scanで返された配列をカウントすることとなります。

参考

特定の文字の出現回数をカウントする - Ruby Tips!
String#count (Ruby 2.7.0 リファレンスマニュアル) - Ruby-lang
String#scan (Ruby 2.7.0 リファレンスマニュアル) - Ruby-lang
String#length (Ruby 2.7.0 リファレンスマニュアル) - Ruby-lang

4
2
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
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?