Re: [xml-dev] XPattern Specification

From
Karl Waclawek <>
To
'xml-dev' <>
Date
2005-01-17T14:18:36Z
ID
<>
Thread
Re: [xml-dev] XPattern Specification
Alan Gutierrez wrote:

> 
>     Hmm... Okay, sorry for the verbose example, it's what I'm
>     working on right now.
>     
>     The idea is that in order to place the exploaded element, I need
>     to select:
> 
>     /request/path-info/path/text()
> 
>     And I need to match:
> 
>     /request/path-info[path]
> 
>     Or maybe even:
> 
>     path[contains(text(), '/')]
> 
>     Which strikes me as resonable, but not, to my understanding, a
>     question of look *ahead*. More like look behind.

Why not just match on /request/path-info/path and process the
accumulated character data in the end-tag event for this element?
Isn't that simple enough?

Karl