xsl-list
[Top] [All Lists]

RE: [xsl] Using Tokenize with Lookbehind Regexp

2008-10-08 07:33:40

There's no "(?" in the XPath 2.0 regex dialect, and I don't think there's
any way of doing what you want to do with a simple call on tokenize(). 


I want to separate the string at each white-space if the 
string before is longer than 70 signs


You could try replace() followed by tokenize(): 

tokenize(replace(., '(.{70}.*)(\s+)', '$1|'), '|')

(where '|' is some character that's not used in your input)

(not tested)

Michael Kay
http://www.saxonica.com/ 


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

<Prev in Thread] Current Thread [Next in Thread>