Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 2nd, 2006, 07:29 PM
Authorized User
 
Join Date: Nov 2006
Posts: 28
Thanks: 0
Thanked 1 Time in 1 Post
Default Need tag value as attribute value

Hi

I have an XML document that looks something like this:
   ...
   <A>
      <A.name>MyName</A.name>
   </A>
   ...

I want the value 'MyName' to appear as a value of an attribute in some other document:
   <B:b atr1="MyName">

How can I write the xsl file to handle this transformation? The part where I do the mathing (<xsl:template match="A/A.name">) I believe is ok, but then making it to print "<B:b atr1="MyName">" seems impossible at this moment.

Thank you for any help regarding this issue!
 
Old November 2nd, 2006, 08:10 PM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

<xsl:template match="A.name">
  <B.b atr1="{.}"/>
</xsl:template>

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old November 2nd, 2006, 08:17 PM
Authorized User
 
Join Date: Nov 2006
Posts: 28
Thanks: 0
Thanked 1 Time in 1 Post
Default

Thank you a lot!

Michael





Similar Threads
Thread Thread Starter Forum Replies Last Post
Extracting a number range from tag attribute group maikm XSLT 6 August 25th, 2008 04:54 PM
HTML tag from C# or ASP.NET tag from javascript angshujit ASP.NET 2.0 Basics 3 February 16th, 2007 10:07 AM
xslt for each and attribute tag desse XSLT 1 May 24th, 2006 08:01 AM
Conversion of a String tag attribute value to Map monregistre Pro JSP 0 May 15th, 2006 07:53 AM
Access to attribute values from class of attribute jacob C# 1 October 28th, 2005 01:11 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.