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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T12:35:48+00:00 2026-05-21T12:35:48+00:00

I have an xsl:param that I’m trying to use to do a template match

  • 0

I have an xsl:param that I’m trying to use to do a template match on an attribute. By everything I’ve found here and on the Internet, I’m doing this correctly. However, my output is blank.

Here is my xslt

<xsl:param name="strm_name">main</xsl:param>    
<xsl:template match="stream[@name='{$strm_name}']"></xsl:template>

If I hardcode the param call to “main”, this works just fine.
Here is the XML tag I’m trying to match to..

<doc><stream name="main"></stream></doc>

Any help is much appreciated!

  • 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-21T12:35:49+00:00Added an answer on May 21, 2026 at 12:35 pm

    I see two issues:

    1. You cannot use a variable or parameter reference in a match pattern in XSLT 1.0
    2. You do not need the surrounding '{...}' when referencing your parameter in the predicate. (You’re probably confusing this with an Attribute Value Template.) Use this instead: stream[@name=$strm_name]

    A possible workaround for issue #1 is to select only those elements that meet the criteria controlled by your param. (You can reference a param in a select expression).

    For example, this stylesheet:

    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
        <xsl:output method="text" />
        <xsl:param name="strm_name" select="'main'"/>
        <xsl:template match="/">
            <xsl:apply-templates select="/*/stream[@name=$strm_name]" />
        </xsl:template>
        <xsl:template match="stream">
            <xsl:apply-templates />
            <xsl:text>/</xsl:text>
        </xsl:template>
    </xsl:stylesheet>
    

    Applied to this document:

    <root>
        <stream name="main">1</stream>
        <stream name="other">2</stream>
        <stream name="main">3</stream>
        <stream name="main">4</stream>
        <stream name="other">5</stream>
        <stream name="other">6</stream>
    </root>
    

    …matches only the desired nodes. Output:

    1/3/4/
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basically I have a small template that looks like: <xsl:template name=templt> <xsl:param name=filter />
I have the following xsl template that I'm using to group my xsl. The
I have a xsl file that is grabbing variables from xml and they seem
How do I save the iterations that have occurred in an xsl:for-each? (variables in
I have nested xsl:for loops: <xsl:for-each select=/Root/A> <xsl:for-each select=/Root/B> <!-- Code --> </xsl:for> </xsl:for>
So, I am working with .NET. I have an XSL file, XslTransform object in
I have a xslt stylesheet with multiple xsl:import s and I want to merge
I have a JSP which attaches a XSL to an XML document pulled from
I have an xslt sheet with some text similar to below: <xsl:text>I am some
What I have is following: <xsl:variable name=myvar select=.//spss:category[((not @varName) or @varName=$colVarName) and @text=$series]/spss:cell/@text/> What

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.