xsl-list
[Top] [All Lists]

Re: [xsl] Processing two documents, which order?

2011-04-08 06:21:48
On Fri, 08 Apr 2011 11:47:18 +0100
David Carlisle <davidc(_at_)nag(_dot_)co(_dot_)uk> wrote:

On 08/04/2011 11:11, Dave Pawson wrote:
I really couldn't contemplate writing such a regex to be honest
David.

if you have a whitespace list of words then the regex is
string-join(tokenize($list,'\s+'),'|')
is that so hard to contemplate?
or you could, as Wolfgang just commented, try to give the regex
engine a helping hand by pre-optimizing that regex by pulling out
common prefixes.

David

With Wolfgangs notes, I'm struggling with the regex for one.

  <xsl:analyze-string select="."
  regex="[^a-z]({$property})[\s.,&#x22;,&#x27;&lt;$]">

Is currently missing >keyword ....
and
... keyword<....

Since checking for frisbee (where bee is the keyword)
causes >bee .... to be missed.

Ditto with the termination? I'm 'requiring' 
a termination, hence missing bee</element

How to add ^ and $ to the start and termination classes?

regards

-- 

regards 

-- 
Dave Pawson
XSLT XSL-FO FAQ.
http://www.dpawson.co.uk

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