Short cut for gsub("word","")

is there any shortcut for removing a string of characters from text,
like gsub("word",""). I looked into String#delete but it will delete all
the characters in the entire word.

Im guessing something like this already exists.

···

--
Posted via http://www.ruby-forum.com/.

I'm kind of surprised String#- doesn't work (it isn't defined)

···

On Mon, Apr 13, 2009 at 4:20 PM, Aryk Grosz <tennisbum2002@hotmail.com>wrote:

Im guessing something like this already exists.

--
Tony Arcieri
medioh.com

Aryk Grosz wrote:

is there any shortcut for removing a string of characters from text,
like gsub("word",""). I looked into String#delete but it will delete all
the characters in the entire word.

  str["word"] = ""
  str[/word/] = ""

but these only do the first instance.

If you find yourself writing

  str.gsub! /word/, ''

repeatedly, to the point where it is tiresome, then factor it out
yourself, depending on exactly what your needs are. e.g.

  class String
    def remove!(str)
      gsub!(str, '')
    end
    def remove(str)
      res = dup
      res.remove!(str)
      res
    end
  end

···

--
Posted via http://www.ruby-forum.com/\.