class Regexp
Public Instance Methods
match?(string, pos = 0)
click to toggle source
# File lib/present_object/core_ext/regexp.rb, line 9 def match?(string, pos = 0) !!match(string, pos) end
multiline?()
click to toggle source
# File lib/present_object/core_ext/regexp.rb, line 4 def multiline? options & MULTILINE == MULTILINE end