# File scripts/ad.rb, line 218
    def to_s
      if @is_match
        s = "<match"
        @results.each do |k,v|
          s += " #{k}=\"#{v}\""
        end
        s += ">#{txt}</match>"
      else
        return txt
      end
    end