ASP Chr The method of digital turning letters _ASP Foundation

Source: Internet
Author: User
Tags microsoft help
Chr function
Returns the character that corresponds to the specified ANSI character code.

CHR (CharCode)

The CharCode parameter is a number that can identify characters.

Description
Numbers from 0 to 31 represent standard, non-printing ASCII code. For example, CHR (10) returns the line feed character.

The following example uses the CHR function to return the character corresponding to the specified character code:

Dim MyChar
MyChar = CHR (65) ' returns A.
MyChar = CHR (97) ' Returns a.
MyChar = CHR (62) ' Back to >.
MyChar = Chr (37) ' returns%. Note The ChrB function is used in conjunction with the byte data contained in the string. ChrB is not a character that returns one or two bytes, but a character that always returns a single byte. The CHRW is provided for 32-bit platforms that use Unicode characters. Its argument is a Unicode (wide-character) character code, so you can avoid converting ANSI to Unicode characters.



Example: output 26 letters for j = 0 to 25
Response.Write (Chr (65+J))
Next
Note: Content from Microsoft Help document
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.