ここではRubyの文字列操作について簡単にまとめておきます。
目次
文字列にある文字列が含まれているかを調べる(include)
If文 - 条件式に後ろが改行の場合はthenを省略できる
"hello".include? "lo" #=> true "hello".include? "ol" #=> false "hello".include? ?h #=> true
ここではRubyの文字列操作について簡単にまとめておきます。
"hello".include? "lo" #=> true "hello".include? "ol" #=> false "hello".include? ?h #=> true