class Regex::Wildcard

A wildcard matches any character (except for the newline).

Protected Instance Methods

text_repr() click to toggle source

Conversion method re-definition. Purpose: Return the String representation of the expression.

# File lib/regex/wildcard.rb, line 14
def text_repr
  '.'
end