xsl-list
[Top] [All Lists]

RE: Converting to ASCII equivalent

2005-08-22 05:26:14





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(_at_)saxonica(_dot_)c         To:      
<xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>                              
         
                      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(_at_)gmail(_dot_)com]
Sent: 22 August 2005 12:32
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
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.

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





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



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