Tutorials Home
What's New
Top Rated
Submit
myTutes
Random!
Figuring Out Functions
Author: Eddie Carroll
| Website: http://www.flashkit.com |
The Function Armoury - Ord
|
Ord
|
Syntax: Ord (character)
|
This function is the Chr function's partner in crime. The Ord function will convert a character to its ASCII code equivalent. As I mentioned in the previous function, this can be used to convert uppercase letters to lower case letters. Let's see how the conversion works, in doing so, we will see how the Ord function works.
Set Variable: "upperCaseLetter" = "A"
Set Variable: "upperNumber" = Ord (upperCaseLetter)
Set Variable: "lowerNumber" = upperNumber + 32
Set Variable: "lowerCaseLetter" = Chr (lowerNumber)
|
upperCaseLetter = "A"
upperNumber = 65
lowerNumber = 97
lowerCaseLetter = "a"
|
There you have it. Code that will convert uppercase letters to lowercase letters. Note the number 32 used in the third line of code. This performs the conversion since there are 32 characters separating the letters "a" and "A". (see what an ASCII table looks like)
|
| |
|
| » Level Intermediate |
|
|
Added: : 2000-09-27
Rating: 8.85 Votes: 114
Hits: 12094
|
| » Author |
|
Eddie is the Content Editor at Flashkit.com and is actually a sentient Gateway Solo 2150xl notebook that suffers from acute lysdexia and caffine addiction. He is carried on the shoulders of a semi-autonomous human called "Body".
|
| » Download |
|
Download the files used in this tutorial.
|
|
Download (12 kb)
|
|
Get conversion and unzipping tools
for PC and Mac here!
|
| » Forums |
|
More help? Search our boards for quick answers!
|
|
Please rate this tutorial, 10 is the top rating, you can also click the
comments link to read/write a review.
|
|
|