http://www.perlmonks.org?node_id=430113


in reply to Re^2: xml_split - split huge XML documents into smaller chunks
in thread xml_split - split huge XML documents into smaller chunks

On using splitting and merging on Win.. After merging the xml compared with the original one gave: Bad newline interpretaion in the first (foo-00.xml) if this is about 30Kb of size. The smaller chunks, have no newline, but:

from Twig :

{ <sometag></sometag> </end_tag_before_splitingone> }

right one :

{ <sometag><![CDATA[]]></sometag> </end_tag_before_splitingone> }

updated 2005-02-11 by mirod: added tags