Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなレガシーコードがあります。
myxml = some xml data parser = Nokogiri::XML::SAX::Parser.new(somedoc) parser.parse_memory myxml
とはparse_memory? それは何をするためのものか?
parse_memory
このparse_memoryメソッドは、ファイル システムまたはインスタンスの背後に格納されているドキュメントとは対照的に、メモリに格納されている XML ドキュメントを解析しIOます。
IO