Module: ReplaceRegex
- Defined in:
- lib/replace_regex.rb,
lib/replace_regex/version.rb
Constant Summary collapse
- VERSION =
"0.1.0"
Instance Method Summary collapse
Instance Method Details
#replace_regex(text, regex, new = '') ⇒ Object
4 5 6 |
# File 'lib/replace_regex.rb', line 4 def replace_regex(text, regex, new = '') text.to_s.gsub(Regexp.new(regex), new.to_s) end |