xsl-list
[Top] [All Lists]

Re: [xsl] xpath problem

2012-02-07 08:13:05
On 07/02/2012 14:00, ram wrote:
Hi,
      I was trying to do xpath like following.


<xsl:variable name='abc' 
select="normalize-space($var1/*[local-name()='source']/text())"/>

the $var1 contains a node set something like this.


<plan>
    <sourc>asfasfs</source>
    <value>adadf</value>
</plan>

     when i run the above line i am not getting any result. is there anything 
wrong with the statement.


It's hard to debug problems when all you know is that the input is "something like this" - solving programming problems requires accurate detail.

My guess would be that $var is actually the document node that contains <plan> as a child element, in which case you need to select down an extra level.

Michael Kay
Saxonica


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

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