# File lib/Dnsruby/resource/TXT.rb, line 42
      def from_string(input)
        words = Shellwords.shellwords(input)
        
        @strings=[]
        
        if (words != nil)
          words.each { |string|
            string .gsub!(/\\"/, '"')
            @strings.push(string)
          }
        end
      end