Skip to content

Instantly share code, notes, and snippets.

@mistyrinth
Created November 28, 2018 12:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mistyrinth/41609e8e634820368a97ac6ef4a2c34c to your computer and use it in GitHub Desktop.
Save mistyrinth/41609e8e634820368a97ac6ef4a2c34c to your computer and use it in GitHub Desktop.
str = "Welcome"
puts "元の文字列は #{str} です"
# 文字列の取得
puts "str[2,4]は #{str[2,4]} です"
puts "str[2..4]は #{str[2..4]} です"
puts "str[2...4]は #{str[2...4]} です"
# 文字列の置き換え
str[2..4] = "abc"
puts "str[2..4]を置き換えた後の文字列は #{str} です"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment