るりまサーチ (Ruby 2.5.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.008秒)
トップページ > クラス:String[x] > クエリ:chop![x] > バージョン:2.5.0[x]

別のキーワード

  1. _builtin chop
  2. string chop!
  3. string chop
  4. kernel chop
  5. _builtin chop!

ライブラリ

検索結果

String#chop! -> self | nil (54379.0)

文字列の最後の文字を取り除きます。 ただし、終端が "\r\n" であればその 2 文字を取り除きます。

...った場合は nil を返します。

//emlist[例][ruby]{
str = "string\r\n"
ret = str.chop!
ret # => "string"
str # => "string"
str.chop! # => "strin"
"".chop! # => nil
//}

@see String#chomp!
@see String#chop
@see String#delete_suffix!...