xsl-list
[Top] [All Lists]

Re: XPath count function in JavaScript

2004-05-06 02:58:50
The following will print 2.

<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">

  <xsl:output method="text"/>

  <xsl:template match="/">
    <xsl:value-of select="count(//*[(_at_)fnamn='Tomas'])"/>
  </xsl:template>

</xsl:stylesheet>

/Marcus

Tomas Olsson wrote:
ok

I do like that now, but then another problem appeard.

my xsl is now like this:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">
  <xsl:output method="text"/>
    <xsl:variable name="fnamn-count" select="count(//*[(_at_)fnamn='Tomas'])"/>
</xsl:stylesheet>

and my xml doc:
<Katalog>
  <Person fnamn="Tomas" enamn="Olsson" tfn="026-789536">
    <Adress adress="Norrav. 34" postnr="50623" postort="Soderhamn"/>
    <Cv>Har arbetat som konsult hos microsoft sedan barnsben</Cv>
  </Person>
  <Person fnamn="Tomas" enamn="Orre" tfn="026-782576">
    <Adress adress="Sodrav. 34" postnr="50323" postort="Gavle"/>
    <Cv>Har arbetat som stadare hos ericsson</Cv>
  </Person>
.
.
.

when I use xml.transformNode(xsl) the result will be a list with the Cv- text, like: Har arbetat som konsult hos microsoft sedan barnsbenHar arbetat som stadare hos ericsson....

What is wrong?

/Tomas

At 18:07 2004-05-05 -0400, you wrote:
Hello Tomas,

Why can't just issue this xpath within XSL directly?

<xsl:variable name="fnamn-count" select="count(//n[(_at_)fnamn='Tomas'])"/>

Or, do you have to do this within a script element?

- Jeff

-----Original Message-----
From: Tomas Olsson 
[mailto:Tomas(_dot_)Olsson(_dot_)2383(_at_)student(_dot_)uu(_dot_)se]
Sent: Wednesday, May 05, 2004 17:44
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] XPath count function in JavaScript


Hi!

I wonder if its possible to use the count function of XPath in JavaScript instead of in XSL. I'm using MSXML.

I want to count the number of elements with the attribute fnamn="Tomas" and return the number:

count(//*[(_at_)fnamn="Tomas"]))
Is it possible to use that expression in a function in JavaScript and return

the number or do I have to use the selectNodes() and check the number of
nodes in the nodeList?

/Tomas


--+------------------------------------------------------------------
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>
--+--

--+------------------------------------------------------------------
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>
--+--




--+------------------------------------------------------------------
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>