# File lib/core/facets/string/to_re.rb, line 21
  def to_rx(esc=true)
    Regexp.new((esc ? Regexp.escape(self) : self))
  end