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 6100289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:22:09+00:00 2026-05-23T13:22:09+00:00

I have a xml code that can ahve two forms : Form 1 <?xml

  • 0

I have a xml code that can ahve two forms :

Form 1

<?xml version="1.0">
<info>
</info>

Form 2

<?xml version="1.0">
<info>
  <a href="http://server.com/foo">bar</a>
  <a href="http://server.com/foo">bar</a>
</info>

From a loop I read each form of xml and pass it to an xslt stylesheet.

XSLT code

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
    <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
    <xsl:strip-space elements="*" />

    <xsl:template match="*|@*|text()">
       <xsl:apply-templates select="/info/a"/>
    </xsl:template> 

    <xsl:template match="a">
       <xsl:value-of select="concat(text(), ' ', @href)"/>
       <xsl:text>&#13;</xsl:text>
    </xsl:template>
</xsl:stylesheet>

And I obtain this :


bar http://server.com/foo
bar http://server.com/foo

How can i remove the first empty line with XSLT only ?

  • 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-23T13:22:10+00:00Added an answer on May 23, 2026 at 1:22 pm

    From a loop I read each form of xml and pass it to an xslt stylesheet.

    May be from your application the execution of the stylesheet on an empty form (Form 1) causes this. Try to handle this by executing the stylesheet only whether the form is not empty.

    Furthermore you may want change your stylesheet into this one:

    <xsl:stylesheet 
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
        version="2.0">
    
        <xsl:output method="text"/>
        <xsl:strip-space elements="*" />
    
        <xsl:template match="info/a">
            <xsl:value-of select="concat(normalize-space(.), 
                ' ',
                normalize-space(@href))"/>
                <xsl:if test="follwing-sibling::a">
                 <xsl:text>&#xA;</xsl:text>
                </xsl:if>
        </xsl:template>
    
    </xsl:stylesheet>
    

    Where normalize-space() is used to ensure that your input data has no unwanted spaces.

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

Sidebar

Related Questions

I have an xml code that looks like below: <?xml version=1.0 encoding=UTF-8?> <metadata><fields><field-order/></fields><roles><role name=DEFAULT3_MOD><state
I have some XML code that looks like this <SEARCHRESULTS> <FUNCTION name=BarGraph> <PARAMETER name=numList></PARAMETER>
I have some code that uses Open XML to open up a .docx file,
I have a bit of code that basically reads an XML document using the
I have the following code that serializes a DataTable to XML. StringWriter sw =
I have a line of PHP code that does the following: $xml = <xml><request>...[snipped
In my .aspx.cs I have a code that reads a .xml file and I
I am a total beginner in JS/XML. I have this simple code that needs
I have some php files in a server which generate xml code in them.
I have a custom XML file format which can contain blocks of code within

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.