Am 11/30/2022 um 12:23 PM schrieb Chris Papademetrious
christopher.papademetrious@xxxxxxxxxxxx:
That is a slick solution.
And Dimitre has not shown up with a shorter/more compact/slicker XPath 1
or 2 solution ten minutes later so perhaps it is kind of adequate here
to exploit fn:analyze-string :)
-----Original Message-----
From: Martin Honnen martin.honnen@xxxxxx
<xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Monday, November 28, 2022 9:47 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: How to tokenize a string that contains space-delimited
tokens and a quoted string that must not be tokenized?
XPath 3:
analyze-string('if machine = "Intel 386 or later processors and compatible
processors" then ground', '"[^"]*"|\S+')/*:match/string()
|