Re: [xsl] preceding/following character?

Subject: Re: [xsl] preceding/following character?
From: omprakash.v@xxxxxxxxxxxxx
Date: Fri, 17 Jun 2005 09:56:19 +0530
Hi,
        Here's a XSLT 1.0 solution.

<?xml version="1.0" encoding="ISO-8859-1"?>
<?altova_sps C:\Documents and Settings\simonj\My
Documents\us101\xml\Messages.sps?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:output method="html"/>
<xsl:strip-space elements="*"/>

<xsl:template match="foo">

<xsl:apply-templates/>

</xsl:template>

<xsl:template match="bar">
<xsl:variable name="follsib" select
="normalize-space(following-sibling::text()[1])"/>
<xsl:if test="starts-with($follsib, '.')">
<xsl:text>.</xsl:text>
</xsl:if>

<bar_out/>
<xsl:apply-templates/>
</xsl:template>


<xsl:template match="text()">

<xsl:choose>
<xsl:when test="preceding-sibling::bar[1]">
<xsl:variable name="tnode" select="normalize-space(.)"/>
<xsl:choose>
<xsl:when test="starts-with($tnode, '.')">

<xsl:value-of select="substring-after($tnode, '.')"/>

</xsl:when>
<xsl:otherwise>
<xsl:value-of select="."/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="."/>
</xsl:otherwise>
</xsl:choose>


<xsl:if test="following-sibling::bar[1]">
<xsl:apply-templates/>
</xsl:if>




</xsl:template>

</xsl:stylesheet>



Cheers,
Omprakash.V




                                                                                                              
                    Bruce D'Arcus                                                                             
                    <bdarcus@gmai        To:     XSL-List@xxxxxxxxxxxxxxxxxxxxxx                              
                    l.com>               cc:     (bcc: omprakash.v/Polaris)                                   
                                         Subject:     [xsl] preceding/following character?                    
                    06/17/2005                                                                                
                    06:40 AM                                                                                  
                    Please                                                                                    
                    respond to                                                                                
                    xsl-list                                                                                  
                                                                                                              
                                                                                                              




Say I have source with mixed content like:

<foo>Some text and more text <bar/>. Some more text.</foo>

I need a "bar" matched template that will under certain conditions move
that period that immediately follows the element to be ahead it.

E.g., in some conditions, output would be:

<foo_out>Some text and more text.<bar_out/> Some more text.</foo_out>

This seems like a simple problem, but I can't really fathom how to
solve it.  I'm using XSLT 2.0.

Bruce






This e-Mail may contain proprietary and confidential information and is sent for the intended recipient(s) only. 
If by an addressing or transmission error this mail has been misdirected to you, you are requested to delete this mail immediately.
You are also hereby notified that any use, any form of reproduction, dissemination, copying, disclosure, modification,
distribution and/or publication of this e-mail message, contents or its attachment other than by its intended recipient/s is strictly prohibited.

Visit Us at http://www.polaris.co.in

Current Thread