xsl-list
[Top] [All Lists]

Re: preceding/following character?

2005-06-16 21:26:19


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(_at_)gmai        To:     
XSL-List(_at_)lists(_dot_)mulberrytech(_dot_)com                              
                    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


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--






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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--