Method: String#remove_whitespace

Defined in:
lib/libis/tools/extend/string.rb

#remove_whitespaceObject

Convert whitespace into underscores



57
58
59
# File 'lib/libis/tools/extend/string.rb', line 57

def remove_whitespace
  self.gsub(/\s/, '_')
end