On Mon, Mar 1, 2010 at 12:11, David Carlisle
<davidc(_at_)nag(_dot_)co(_dot_)uk> wrote:
you should be able to get access to the feature using replace() I think.
use replace with the nonstandard lookahead flag and a replace string which
re-inserts the entire matched string, but with some unique marker such as
@start(_at_)$0@end, then you can apply analyze-string to the resulting string
without needing any lookahead markers as you can instead match the explicit
@start@ and @end@ boundaries added in the first pass.
This was the kind of approach I was looking at, though admittedly I
was thinking of doing this to the input data as a whole before
processing. It would be much more clever to do it in a variable
before processing though.
-James
--~------------------------------------------------------------------
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>
--~--