[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] Converting to ASCII equivalent


Subject: RE: [xsl] Converting to ASCII equivalent
From: omprakash.v@xxxxxxxxxxxxx
Date: Mon, 22 Aug 2005 17:56:14 +0530

Hi,
       IMHO no extension would be needed if the OP was willing to invest
the time in preparing the ASCII table in xml format. He could then look up
the corresponding ascii equivalent for a character from the lookup.xml file
and return it.

No denying that it would be far easier if he were to use extension
functions though.

Regards,
prakash





                                                                                                                                
                      "Michael Kay"                                                                                             
                      <mike@xxxxxxxxxx         To:      <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>                                       
                      om>                      cc:      (bcc: omprakash.v/Polaris)                                              
                                               Subject: RE: [xsl] Converting to ASCII equivalent                                
                      08/22/2005 05:17                                                                                          
                      PM                                                                                                        
                      Please respond                                                                                            
                      to xsl-list                                                                                               
                                                                                                                                
                                                                                                                                




Not possible in 1.0 without extensions.

In 2.0:

<xsl:analyze-string select="$in" regex="[A-Za-z]">
  <xsl:matching-substring>
    <xsl:value-of select="format-number(string-to-codepoints(.), '00')"/>
  </xsl:matching-substring>
  <xsl:non-matching-substring>
    <xsl:value-of select="."/>
  </xsl:non-matching-substring>
</xsl:analyze-string>

Michael Kay
http://www.saxonica.com/

> -----Original Message-----
> From: Sreenath Juluri [mailto:jssreenath@xxxxxxxxx]
> Sent: 22 August 2005 12:32
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: [xsl] Converting to ASCII equivalent
>
> hi,
>
> i want to replace all the alaphabets in a string with its
> corressponding ascii values
>
> ie <xsl:variable name="id">AB30285</xsl:variable>
>
> when i select this variable i need to print 656630285. how do
> we do this?
>
> thanks
> Sreenath.





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
Keywords
xml