るりまサーチ (Ruby 2.5.0)

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

別のキーワード

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

ライブラリ

検索結果

String#chop! -> self | nil (117505.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!...