# File alientaglist.rb, line 23
        def string_to_taglist(taglist_string)
                lines = taglist_string.split("\r\n")
                
                lines.each do |line|
                        if line != "(No Tags)"
                                add_tag(AlienTag.new(line))
                        end
                end
                
                return self
        end