Actions
Feature #10574
openAdd String#lchomp and String.lchomp!
Description
With the expected behavior, i.e.
irb(main):013:0> 'foobar'.lchomp('foo')
=> "bar"
irb(main):014:0> 'foobar'.lchomp('baz')
=> "foobar"
A quick google search will turn up plenty of practical uses for this, as well as lots of libraries that patch String
themselves to add this.
Updated by shevegen (Robert A. Heiler) over 8 years ago
Possibly also add the default without arguments in order to compare to .chomp:
"\nacbdef\n".chomp # => "\nacbdef"
"\nacbdef\n".lchomp # => "acbdef\n"
Updated by javawizard (Alex Boyd) over 8 years ago
Agreed. I was slightly lazy writing up my example... :-)
Actions
Like0
Like0Like0