class Regexp::Expression::CharacterSet

def matches?(input)

def matches?(input)
  input =~ /#{to_s}/ ? true : false
end