Advertisement
gkpoll

Untitled

Nov 7th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.56 KB | None | 0 0
  1. <xsl:choose>
  2.  
  3.  
  4.     <xsl:when test="$charsRestante &lt; 1000 or $charsRestante = 1000">  <!-- < 1000 é tolerável -->                     
  5.  
  6.                     <xsl:call-template name="dividirPalavrasMuitoGrandes">
  7.                         <xsl:with-param name="str" select="$stringRestante"/>
  8.                     </xsl:call-template>                                       
  9.                
  10.                
  11.         </xsl:when>
  12.         <xsl:otherwise>
  13.  
  14.                
  15.                
  16.                     <xsl:call-template name="dividirPalavrasMuitoGrandes">
  17.                         <xsl:with-param name="str" select="$stringRestante"/>
  18.                     </xsl:call-template>                                       
  19.                
  20.        
  21.                
  22.         </xsl:otherwise>
  23.                
  24. </xsl:choose>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement