Help for this page

Select Code to Download


  1. or download this
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <top xmlns:xi="http://www.w3.org/2001/XInclude">
    ...
        <xi:include href="$WORK_ROOT/MOD_B/module_b.xml"/>
        <xi:include href="$WORK_ROOT/MOD_C/module_c.xml"/>
    </top>
    
  2. or download this
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <record xmlns:xi="http://www.w3.org/2001/XInclude">
    ...
                     <data>data</data>
            </module>
    </record>
    
  3. or download this
    use XML::DOM;
    use XML::SAX;
    ...
    );
    $parser->parse_uri($input_file);
    close($output);
    
  4. or download this
    $parser = new XML::DOM::Parser;
    my $doc = $parser->parsefile("$output_file");