Re: [xsl] Creating strings with apos and replacing

Subject: Re: [xsl] Creating strings with apos and replacing
From: "Martin Honnen martin.honnen@xxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Tue, 13 May 2025 19:19:53 -0000
On 13/05/2025 21:05, dvint dvint@xxxxxxxxx wrote:
Trplle apos does the trick for defining the variable, but doesn't work
for the replace().


It is not clear what you want to replace and the second argument to
replace is a regular expression anyway e.g.

B replace($input, '["'']+', '')

would remove double quotes and singles quotes.

Which you could also do with

translate($input, '"''', '')

Current Thread