Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7581063
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T18:06:23+00:00 2026-05-30T18:06:23+00:00

I am trying to flatten a hierarchy / structure to XML using XSLT 1

  • 0

I am trying to flatten a hierarchy / structure to XML using XSLT 1 but not having success. – even finding good links…

input xml


<Address addressType="R">
 <Structured xmlns="cds_dt">
  <Line1>15 Paradise</Line1>
  <City>Toronto</City>
  <CountrySubdivisionCode>-50</CountrySubdivisionCode>
  <PostalZipCode>
    <PostalCode>A1A1O1</PostalCode>
  </PostalZipCode>
 </Structured>
</Address>

desired output xml


<Address addressType="R">
  <Formatted xmlns="cds_dt">15 Paradise, Toronto, A1A1O1</Formatted>
</Address>

I tried this .xsl but no luck – error in file


<xsl:stylesheet version="1.0" 
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
 xmlns:x="cds"> 

<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*" />

<xsl:template match="@* | node()">
  <xsl:copy>
   <xsl:apply-templates select="@* | node()"/>
  </xsl:copy>
</xsl:template>

<xsl:template match="*[ancestor::address]">
  <xsl:apply-templates/>
</xsl:template>

<xsl:template match="text()[ancestor::address::Structured]">
  <xsl:value-of select="concat('&#44;',.)"/>
</xsl:template>

</xsl:stylesheet> 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T18:06:25+00:00Added an answer on May 30, 2026 at 6:06 pm

    This transformation:

    <xsl:stylesheet version="1.0"
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     xmlns:x="cds_dt">
     <xsl:output omit-xml-declaration="yes" indent="yes"/>
     <xsl:strip-space elements="*"/>
    
     <xsl:template match="node()|@*">
      <xsl:copy>
       <xsl:apply-templates select="node()|@*"/>
      </xsl:copy>
     </xsl:template>
    
     <xsl:template match="x:Structured">
      <xsl:element name="Formatted" namespace="cds_dt">
       <xsl:value-of select=
       "concat(x:Line1, ', ', x:City, ', ', x:PostalZipCode/x:PostalCode)"/>
      </xsl:element>
     </xsl:template>
    </xsl:stylesheet>
    

    when applied on the provided XML document:

    <Address addressType="R">
        <Structured xmlns="cds_dt">
            <Line1>15 Paradise</Line1>
            <City>Toronto</City>
            <CountrySubdivisionCode>-50</CountrySubdivisionCode>
            <PostalZipCode>
                <PostalCode>A1A1O1</PostalCode>
            </PostalZipCode>
        </Structured>
    </Address>
    

    produces the wanted, correct result:

    <Address addressType="R">
       <Formatted xmlns="cds_dt">15 Paradise, Toronto, A1A1O1</Formatted>
    </Address>
    

    Explanation: Overriding of the identity rule + proper use of namespaces and the <xsl:element> instruction.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to flatten the xml output of xstream using a converter/marshaling with
am trying to flatten an XML element based on a child element name using
Trying to do this sort of thing... WHERE username LIKE '%$str%' ...but using bound
I'm trying to think functional, in XSLT terms, as much as possible, but in
I am trying to flatten a multi-dimensional array with ConvertAll but I can't get
I am currently trying to flatten a deep-structured XML document in C# so that
Basically, I'm trying to flatten a list in my function but ignore that (you
I'm trying to wrap my brain around this but it's not flexible enough. In
Trying to setup an SSH server on Windows Server 2003. What are some good
Trying to perform a single boolean NOT operation, it appears that under MS SQL

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.