xsl-list
[Top] [All Lists]

[xsl] Regex Expression Problem

2007-01-24 04:02:15

Hi All,

I am facing Regex problem. Here is my input, output and Stylesheet.

My Input
=======

<P>Todo pasa y todo queda,
  pero lo nuestro es pasar,
  pasar haciendo caminos,
  caminos sobre el mar.
  
  Nunca persequ la gloria,
  ni dejar en la memoria
  de los hombres mi canci&#243;n;
  yo amo los mundos sutiles,
  ingrvidos y gentiles,
  como pompas de jabn.
</P>

I Need Output
=============

<poem>
<stanza>
<line>Todo pasa y todo queda,</line>
<line>pero lo nuestro es pasar,</line>
<line>pasar haciendo caminos,</line>
<line>caminos sobre el mar.</line>
</stanza>
<stanza>  
 <line>Nunca persequ la gloria,</line>
  <line>ni dejar en la memoria</line>
  <line>de los hombres mi cancin;</line>
 <line> yo amo los mundos sutiles, </line>
 <line> ingrvidos y gentiles, </line>
 <line> como pompas de jabn. </line>
</stanza>
</poem>

My XSL
======

<xsl:template match="P">
<xsl:analyze-string select="." regex="[^-a-z]+.[a-z]&#10;">
  <xsl:matching-substring>
<line>
    <xsl:value-of select="."/>
</line>
  </xsl:matching-substring>
  <xsl:non-matching-substring>
    <xsl:value-of select="."/>
  </xsl:non-matching-substring>
</xsl:analyze-string>
  </xsl:template>


My output is not properly. I am missing in regex expression. Please any
advice how catch every line and enter space.

Thanks and Regards
Byomokesh



--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>