chop -> String
[permalink][rdoc][edit]-
文字列の最後の文字を取り除いた新しい文字列を生成して返します。ただし、文字列の終端が "\r\n" であればその 2 文字を取り除きます。
p "string\n".chop # => "string" p "string\r\n".chop # => "string" p "string".chop # => "strin" p "strin".chop # => "stri" p "".chop # => ""
[SEE_ALSO] String#chomp
[SEE_ALSO] String#chop!
[SEE_ALSO] String#delete_suffix