# File lib/Dnsruby/resource/TXT.rb, line 55
      def rdata_to_string
        if (defined?@strings)
          temp = @strings.map {|str|
            str.gsub(/"/, '\\"')
              %<"#{str}">
          }
          return temp.join(' ')
        end          
        return ''
      end