Think Twice
IT技術メモ | Rubyのメモ
Created: 2021-03-09 / Updated: 2021-03-09

Rubyで文字列操作


ここではRubyの文字列操作について簡単にまとめておきます。

目次


文字列にある文字列が含まれているかを調べる(include)

If文 - 条件式に後ろが改行の場合はthenを省略できる
Copy
"hello".include? "lo"   #=> true
"hello".include? "ol"   #=> false
"hello".include? ?h     #=> true

参考


参考

参考サイト