This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Brackets in XPATHS


>  /xpath1/(xpath2|xpath3)/xpath4
> 
> I have two or more elements that are the same but that can apear in different 
places in the structure.
> I tried the following form where
> 
> xpath1 = tag1/tag2[@attrib1='fads']/tag3[@attrib2='ahf']
> xpath2 = tag4
> xpath3 = tag5[1][attrib3='gf' and tag6/@attrib4 ='flk']
> xpath4 = @attrib5

What about a step by step construction?
<xsl:variable name="v1" select="/xpath1" />
<xsl:variable name="v2" select="$v1/xpath2 | $v1/xpath3" />
<xsl:variable name="v3" select="$v2/xpath4" />

Cheers,
Oliver


/-------------------------------------------------------------------\
|  ob|do        Dipl.Inf. Oliver Becker                             |
|  --+--        E-Mail: obecker@informatik.hu-berlin.de             |
|  op|qo        WWW:    http://www.informatik.hu-berlin.de/~obecker |
\-------------------------------------------------------------------/


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]