Many Thanks for your quick reply
  is giving me 2 spaces rather than 1 space
I am printing customer title first name lastname
when I use   between
<xsl:choose>
<xsl:when test="string-length(normal
<xsl:value-of select="Title"/>
</xsl:when>
<xsl:otherwise>
<a href="https://citibankinte
</xsl:otherwise>
</xsl:choose>  
<xsl:value-of select="Firstname"/> 

<xsl:value-of select="Lastname"/>,
It is giving me 2 spaces between there name. I need one space
Another thing
I have whole list of HTML encoding of foreign language characters from the URL
http://www.thesauruslex.co
I am converting these foreign language characters to HTML encoding
How do I convert these symbols into numeric entities
Thanks
Please suggest
Main Topics
Browse All Topics





by: BigRatPosted on 2009-06-22 at 03:46:43ID: 24681101
The ONLY entities allowed in XML are those for <,>,",' and & and NO others.
You must convert your HTML entities inro numeric entities. For instance is  
I usually do mine in Hex since they are easier to lookup in my Unicode manual. Under Windows start the character utility and select the character you want. In a box on the left hand side the Unicode value is displayed. For example "©" it is U+00A9. You may drop leading zeros if you wish, the entity then becomes ©
HTH