ruby文字列操作

文字列操作で使うメソッド

text = "Hello, Ruby!"

文字列の長さを取得

length = text.length
puts length  # 出力: 13

文字列を大文字に変換

uppercase_text = text.upcase
puts uppercase_text  # 出力: HELLO, RUBY!

文字列を小文字に変換

lowercase_text = text.downcase
puts lowercase_text  # 出力: hello, ruby!

文字列を置換

replaced_text = text.gsub("Hello", "Hi")
puts replaced_text  # 出力: Hi, Ruby!

文字列を分割

words = text.split(", ")
puts words.inspect  # 出力: ["Hello", "Ruby!"]