Module: Thoran::String::Capture
- Defined in:
- lib/Thoran/String/Capture/capture.rb
Instance Method Summary collapse
Instance Method Details
#capture(regex) ⇒ Object
14 15 16 17 18 19 20 |
# File 'lib/Thoran/String/Capture/capture.rb', line 14 def capture(regex) if md = self.match(regex) md[1] else nil end end |