xsl-list
[Top] [All Lists]

RE: parent node ??

2003-11-27 04:19:16
Thank you,
if it is not possible to select all valid inputs that have the same string
value of their parent, is it possible to select the solution tag with a few
attribute?
<solution valid_input_00="Inhalt" valid_input_01="Inhalt1"
valid_input_02="Inhalt2" ...>Inhalt</solution>
My problem is to count how many valid_inputs have the same string value as
the solution tag.

Markus

xml 
<solution>Inhalt<valid_input>Inhalt</valid_input><valid_input>
Inhalt_1</valid_input></solution>

xsl
<xsl:variable name="total" 
select="count(solution/valid_input[parent::solution = 
self::valid_input])" />


If you are trying to count all the valid_input elements you just need 

  count(solution/valid_input)

If you are only trying to count some of them, you will need to explain
which ones, because your predicate is completely bizarre: it selects
those valid_input elements that have the same string value as their
parent node.

Michael Kay


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


-- 
NEU FÜR ALLE - GMX MediaCenter - für Fotos, Musik, Dateien...
Fotoalbum, File Sharing, MMS, Multimedia-Gruß, GMX FotoService

Jetzt kostenlos anmelden unter http://www.gmx.net

+++ GMX - die erste Adresse für Mail, Message, More! +++


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



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