mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
b257034ae5
Treats: #start_with? #end_with? #delete_prefix #delete_prefix! #delete_suffix #delete_suffix!
8 lines
341 B
Text
8 lines
341 B
Text
Returns a copy of +self+ with trailing substring <tt>suffix</tt> removed:
|
|
|
|
'hello'.delete_suffix('llo') # => "he"
|
|
'hello'.delete_suffix('hel') # => "hello"
|
|
'тест'.delete_suffix('ст') # => "те"
|
|
'こんにちは'.delete_suffix('ちは') # => "こんに"
|
|
|
|
Related: String#delete_suffix!, String#delete_prefix.
|