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

  • Home
  • SEARCH
  • 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 4018952
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:02:47+00:00 2026-05-20T10:02:47+00:00

Taking this question about beautiful XSL but getting more specific, how should I refactor

  • 0

Taking this question about beautiful XSL but getting more specific, how should I refactor this XSL to take advantage of apply-templates and/or keys.

I tend to “over use” for-each elements to control the context of the source and I can imagine that apply-templates can help. Despite much Google-ing, I still don’t understand how to control context within the multiple templates.

In the below example, how can the repetitive XPath segments be reduced by refactoring?

    <xsl:template match="/">
    <xsl:element name="Body">
        <xsl:element name="Person">
            <xsl:if     test="/source/dbSrc/srv/v[@name='name']/text()='false'">
                <xsl:element name="PhoneNumber" />
                <xsl:element name="Zip">
                    <xsl:value-of
                        select="/source/req[1]/personal-info/address-info/zip-code" />

                </xsl:element>
            </xsl:if>
            <xsl:if test="/source/dbSrc/srv/v[@name='name']/text()='true'">
                <xsl:element name="PhoneNumber" />
                <xsl:element name="Zip">
                    <xsl:value-of select="/source/req[3]/personal-info/address-info/zip-code" />
                </xsl:element>
            </xsl:if>
        </xsl:element>

</xsl:template>
  • 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-20T10:02:47+00:00Added an answer on May 20, 2026 at 10:02 am

    One initial way of refactoring the given code would be the following:

    <xsl:stylesheet version="1.0"
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    
     <xsl:template match="/">
      <Body>
       <Person>
        <PhoneNumber/>
         <Zip>
           <xsl:apply-templates select=
            "/*/dbSrc/srv/v[@name='name']"/>
         </Zip>
       </Person>
      </Body>
     </xsl:template>
    
     <xsl:template match="v[@name='name' and .='true']">
       <xsl:value-of select=
       "/*/req[3]/personal-info/address-info/zip-code"/>
     </xsl:template>
    
     <xsl:template match="v[@name='name' and .='false']">
       <xsl:value-of select=
       "/*/req[1]/personal-info/address-info/zip-code"/>
     </xsl:template>
    </xsl:stylesheet>
    

    Do note: The refactored code doesn’t contain any conditional xslt instructions.

    Further refactoring can let us get rid of the last too templates, because in this case additional templates aren’t actually needed — the code only creates a single element and depends on a single condition:

    <xsl:stylesheet version="1.0"
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    
     <xsl:variable name="vCond" select=
      "/*/dbSrc/srv/v[@name='name']/text()='true'"/>
    
     <xsl:variable name="vInd" select=
      "3*$vCond + 1*not($vCond)"/>
    
     <xsl:template match="/">
      <Body>
       <Person>
        <PhoneNumber/>
         <Zip>
          <xsl:value-of select=
          "/*/req[position()=$vInd]
                    /personal-info/address-info/zip-code"/>
         </Zip>
       </Person>
      </Body>
     </xsl:template>
    </xsl:stylesheet>
    

    Note: Here we assume that /*/dbSrc/srv/v[@name='name']/text() can have only two possible values: 'true' or 'false'

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

Sidebar

Related Questions

I asked this question about taking a picture of a webpage programmatically , and
Ok, so I swear this question should be all over the place, but its
There is this example code, but then it starts talking about millisecond / nanosecond
Well, I tried to ask this question as a comment on this question, but
I have a question about whether or not a specific way of applying of
I've not found a answer to this question anywhere, but this seems like a
I have a question, but let me first say that this is being performed
Taking this article on classes and structs as an example: http://msdn.microsoft.com/en-us/library/ms173109.aspx namespace ProgrammingGuide {
It is currently said that MD5 is partially unsafe. Taking this into consideration, I'd
Taking advice from this post , I purchased a copy of 'The C Programming

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.