remove xml tags with XSLT

Posted by azathoth on Stack Overflow See other posts from Stack Overflow or by azathoth
Published on 2010-04-14T23:11:41Z Indexed on 2010/04/14 23:13 UTC
Read the original article Hit count: 381

Filed under:
|
|
|

Hello all

I have the following xml file:

<xfa:data>
  <form1>
    <Page1>
    <Page2>
    <contractInfo> ... </contractInfo>
    <paymentInfo> ... </paymentInfo>
  </form1>
  <commercialType> .... </commercialType>
  <userList> ... </userList>
  <officesList> ... </officesList>
  <commercialType> .... </commercialType>
  <userList> ... </userList>
  <officesList> ... </officesList>
  <commercialType> .... </commercialType>
  <userList> ... </userList>
  <officesList> ... </officesList>
</xfa:data>

I want to remove every ocurrence of the commercialType, userList and officesList nodes, so my output would be :

<xfa:data>
  <form1>
    <Page1>
    <Page2>
    <contractInfo> ... </contractInfo>
    <paymentInfo> ... </paymentInfo>
  </form1>
</xfa:data>

How could I do that using XSLT?

Thank you

© Stack Overflow or respective owner

Related posts about Xml

Related posts about xslt