Re: [xsl] XML to XML change, handling mixed content

Subject: Re: [xsl] XML to XML change, handling mixed content
From: Ruud Grosmann <r.grosmann@xxxxxx>
Date: Wed, 19 Oct 2011 13:00:16 +0200
On 10/18/11 22:41, Karlmarx R wrote:
Hello,

I have 2 questions:

Hi Karl Marx,


add a single template to analyze the text nodes:

<xsl:template match="text()>
<!-- do an analyze-string in here to match all occurences of links and to transform them to an a element. -->
<xsl:analyze-string select='.'
regex='.....'>
<xsl:matching-substring>
<!-- transform to a element>
</xsl:matching-substring>
<xsl:non-matching-substring>
<xsl:value-of select='.' />
</xsl:non-matching-substring>
</xsl:analyze-string>
</template>



You need to make a regex that fits your needs and to provide in elements that do the transformation.


regards, Ruud

Current Thread