|
next
|
 Subject: Some insertions and deletions in XML file Author: Simone S Date: 24 Apr 2006 01:24 AM
|
Hello all,
Could anyone please help me with the following
This is my "Input XML" file
===========================
<?xml:stylesheet type="text/xsl" href="a-1.xsl"?>
<!-- <!DOCTYPE hdbkedit PUBLIC "-//ASM//DTD HANDBK.DTD 19960930 Ver 3.0//EN" "handbk.dtd"> -->
<!DOCTYPE article SYSTEM "entity.dtd">
<hdbkedit>
<article id="A0003971" access.no="V14A_D01_A01" status="draft" lang="en">
<article.info>
<page.no type="page">3</page.no>
<title>Bulk-Forming Processes</title>
<cite.as>Introduction to Bulk-Forming Processes, <italic>Bulk Forming</italic>, Vol 14A, <italic>Handbook</italic>International, 2005, p 3–10</cite.as>
<first.page>3</first.page>
<last.page>10</last.page>
<figct number="6">
<tabct number="1">
I need this as my "Output XML" file
===================================
<?xml:stylesheet type="text/xsl" href="a-1.xsl"?>
<!DOCTYPE article SYSTEM "entity.dtd">
<hdbkedit>
<article id="A0003971" access.no="V14A_D01_A01" status="draft" lang="en">
<article.info>
<page.no type="page">3</page.no>
<title>Bulk-Forming Processes</title>
<cite.as>Introduction to Bulk-Forming Processes, <italic>Bulk Forming</italic>, Vol 14A, <italic>Handbook</italic>International, 2005, p 3–10</cite.as>
<first.page>3</first.page>
<last.page>10</last.page>
<figct number="6"/>
<tabct number="1"/>
Further explanation to avoid confusion
======================================
I need to insert this line as my first line
<?xml:stylesheet type="text/xsl" href="a-1.xsl"?>
As my second line I need to delete the following line
<!DOCTYPE hdbkedit PUBLIC "-//ASM//DTD HANDBK.DTD 19960930 Ver 3.0//EN" "handbk.dtd">
and instead need to insert the following line
<!DOCTYPE article SYSTEM "entity.dtd">
I need to insert a backslash at the end of my tag
currently I have - <figct number="6">
But I need as - <figct number="6"/>
Thanks
|
|
|