0
0

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 sliceメソッドについて

Posted at

初めに

初学者です。間違いなどありましたご指摘お願いします。
今回はsliceメソッドについて確認していきます。

sliceメソッド

sliceメソッドとは配列や文字列から指定した要素を取り出すことができます。文字列の要素を指定するときは数字を使います。添字の観点から数字は0から数えます。

#文字列をstrに代入
str = "abcdefg"
#文字列から指定した要素を取得して変数numに代入
num = str.slice(2)
#変数numに代入した文字列を出力
puts num
#=> "c"

要するに指定して文字列から指定した要素を取り出すことができるメソッドになります。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?