[Home] [By Thread] [By Date] [Recent Entries]
Tested with input:
<?xml version="1.0" encoding="UTF-8"?> <para>Hoping to satisfy [...] the secrets of ecstatic love, the roots of personal happiness.</para> using xsl: <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> <xsl:template match="text()[parent::para]"> <xsl:analyze-string select="." regex="\[(.*?)\]"> <xsl:matching-substring> <cite><xsl:value-of select="regex-group(1)"/></cite> </xsl:matching-substring> <xsl:non-matching-substring> <xsl:value-of select="."/> </xsl:non-matching-substring> </xsl:analyze-string> </xsl:template> </xsl:stylesheet> produced: <?xml version="1.0" encoding="UTF-8"?>Hoping to satisfy <cite>...</cite> the secrets of ecstatic love, the roots of personal happiness. used saxon8 in oxygen.... -- Jeff J. S. Rawat wrote: Not working!!!
|

Cart



