Wrox Programmer Forums
|
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 March 12th, 2008, 02:04 PM
Authorized User
 
Join Date: Mar 2008
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default $@src

Hello again, another basic question...

<poop src="asdf" />

<xsl:variables name="asdf">asdfasdf</xsl:variable>

During the transformation I would like something to work like $@src... like it converts the value of the @src to a string that is then interpreted as the name of the variable... so $@src = $asdf in the previous example.

Is this possible?

Sorry, I just found out about XSLT like a week ago :/

 
Old March 12th, 2008, 03:38 PM
samjudson's Avatar
Friend of Wrox
 
Join Date: Aug 2007
Posts: 2,128
Thanks: 1
Thanked 189 Times in 188 Posts
Default

You can refer to an attribute as simply @src, provided you are in the correct context.

You can assign an attribute to a variable like so:

<xsl:variable name="poopsrc" select="/poop/@src" />

/- Sam Judson : Wrox Technical Editor -/
 
Old March 12th, 2008, 04:22 PM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

No, it's not possible. Despite the use of $ to indicate a variable reference, XSLT is more like a compiled language than a shell-script language. Variables represent values, they don't represent bits of expression text, and their names are not accessible at run-time.

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference





Similar Threads
Thread Thread Starter Forum Replies Last Post
replace src URL billbillbill Classic ASP Basics 1 August 12th, 2007 01:03 AM
chapter2-src\src\ch02\sample5 _ need help M7777777bill BOOK: Professional Java Development with the Spring Framework 0 June 14th, 2006 10:00 PM
dynamic SRC argument doum74 JSP Basics 1 April 5th, 2006 01:38 PM
How to compile from the src directory ? Joe Servlets 1 June 13th, 2003 01:31 AM





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