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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T01:36:06+00:00 2026-06-19T01:36:06+00:00

I have an XML file which has an @url attribute for the element <matimage>

  • 0

I have an XML file which has an @url attribute for the element <matimage>. Currently there is a certain image name in the @url attribute, say triangle.png. I want to apply XSLT and modify this URL so that it would be something like assets/images/triangle.png.

I tried the following XSLT:

<?xml version="1.0"?>
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:output method="xml" />

  <!-- Copy everything -->
  <xsl:template match="*">
    <xsl:copy>
     <xsl:copy-of select="@*" />
     <xsl:apply-templates />
   </xsl:copy>
  </xsl:template>

 <xsl:template match="@type[parent::matimage]">
   <xsl:attribute name="uri">
     <xsl:value-of select="NEW_VALUE"/>
   </xsl:attribute>
 </xsl:template>
</xsl:stylesheet>

As a first step I tried to replace the old value with a new value but that didn’t seem to work. Please tell me how to prepend or append a new value to the existing value of the @url attribute.

Here is the sample XML:

   <material>
    <matimage url="triangle.png">
        Some text
    </matimage>
  </material>

Desired output:

   <material>
    <matimage url="assets/images/triangle.png">
        Some text
    </matimage>
  </material>
  • 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-06-19T01:36:07+00:00Added an answer on June 19, 2026 at 1:36 am

    A solution for what you are trying to achieve could be:

    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
        <xsl:output method="xml" indent="yes"/>
    
        <!-- Identity template : copy elements and attributes -->
        <xsl:template match="@*|node()">
            <xsl:copy>
                <xsl:apply-templates select="@*|node()" />
            </xsl:copy>
        </xsl:template> 
    
        <!-- Match all the attributes url within matimage elements -->
        <xsl:template match="matimage/@url">
            <xsl:attribute name="url">
                <!-- Use concat to prepend the value to the current value -->
                <xsl:value-of select="concat('assets/images/', .)" />
            </xsl:attribute>
        </xsl:template>
    
    </xsl:stylesheet>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this xml file which has text init. i.e Hi my name is
I have an XML file which has many section like the one below: <Operations>
I have an XML file which has to be transformed using XSLT, I am
I have a very large XML file which has like 40000 data, and when
I have parsed XML file into objects, in which each object has a 1:1
I have an XML file that has a number of nodes, each of which
I have a .out file which has xml content like this. <header stub> <article
I have a xml file which I need to open with Microsoft Word 2007.
I have an XML file which I need to parse using PHP and send
I have an XML file which XML parser choke on. A part of it

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.