Method: Verbal#capture

Defined in:
lib/verbal.rb

#capture(&block) ⇒ Object

Captures the nested regular expression.

Examples:

Capture the title of the concert and performer

verbal = Verbal.new do
  capture { anything }
  find /\sby\s/
  capture { anything }
end
data = verbal.match('this is it by michael jackson')
data[1] # => 'this is it'
data[2] # => 'michael jackson'
[View source]

211
212
213
# File 'lib/verbal.rb', line 211

def capture(&block)
  append "(#{Verbal.new(&block).source})"
end