xsl-list
[Top] [All Lists]

Re: Re: Problem with Parameter binding with String

2003-08-29 08:43:36
Dongling,

At 07:54 PM 8/28/2003, you wrote:
It seems like you can only use the parameter(variable)
in the predicates with XPATH.

This isn't true, and it's puzzling why you draw this conclusion. It's true that if you want to copy a node, it has to be a node, not a string...

So, I can do this:

<xsl:copy-of select="*[name(.) = $pName]"/>

To copy the orignal element to the output.

Yes, and that's what it sounded like you wanted to do.

Note the expression you provided copies all element *children* of the context node whose name equals $pName to the result, since "*[name(.) = $pName]" is an abbreviation for the XPath:

child::*[name(self::node()) = $pName]

If $pName were a node (perhaps from your lookup table) and not a string, you could certainly copy it, though that isn't what you said you wanted to do.

Cheers,
Wendell


======================================================================
Wendell Piez                            
mailto:wapiez(_at_)mulberrytech(_dot_)com
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
  Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================


XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>