Re: [xsl] matching attribute values that are in range

Subject: Re: [xsl] matching attribute values that are in range
From: Jeff Sese <jsese@xxxxxxxxxxxx>
Date: Wed, 19 Jul 2006 19:24:10 +0800
Thanks andrew and florent this helped a lot. What i used was:

document('source2.xml')/entry[@id=current()/@id and @type=current()/@type and (@n=current()/@n or @n[matches(.,'-') and number(substring-before(.,'-')) &lt;= current()/@n and number(substring-after(.,'-')) >= cunrrent()/@n])]

-- Jeff

Current Thread