るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.028秒)
トップページ > クラス:String[x] > クエリ:string[x] > クエリ:tr[x] > クエリ:*[x] > クエリ:end_with?[x]

別のキーワード

  1. _builtin *
  2. matrix *
  3. vector *
  4. bigdecimal *
  5. array *

ライブラリ

検索結果

String#end_with?(*strs) -> bool (30337.0)

self の末尾が strs のいずれかであるとき true を返します。

...strs のいずれかであるとき true を返します。

@param strs パターンを表す文字列 (のリスト)

//emlist[例][ruby]{
"string".end_with?("ing") # => true
"string".end_with?("str") # => false
"string".end_with?("str", "ing") # => true
//}

@see String#st...
...art_with?
@see String#delete_suffix, String#delete_suffix!...