summaryrefslogtreecommitdiff
path: root/doc/string/end_with_p.rdoc
blob: f959cf7aaab371eeed3e8680ec35a364021df62e (plain)
1
2
3
4
5
6
7
8
9
10
11
Returns whether +self+ ends with any of the given +strings+.

Returns +true+ if any given string matches the end, +false+ otherwise:

  'hello'.end_with?('ello')               #=> true
  'hello'.end_with?('heaven', 'ello')     #=> true
  'hello'.end_with?('heaven', 'paradise') #=> false
  'тест'.end_with?('т')                   # => true
  'こんにちは'.end_with?('は')              # => true

Related: String#start_with?.