Class: Regexp
- Inherits:
-
Object
- Object
- Regexp
- Defined in:
- lib/core_ext/regexp.rb
Defined Under Namespace
Classes: Template
Instance Method Summary collapse
Instance Method Details
#append(other_regex) ⇒ Object
4 5 6 7 8 9 10 11 |
# File 'lib/core_ext/regexp.rb', line 4 def append(other_regex) if(other_regex.is_a? Regexp) other_string = other_regex.source else other_string = other_regex.to_s end Regexp.new(self.source+other_string) end |