Ok, is there anyway to use ord to do the opposite of chr? For example, 65 would be 'A'. Is there any way to use ord and get 65 from 'A'?
Don't know if I explained this right but thanks
brian
Main Topics
Browse All TopicsLast function till I start my program - ord. I read that Ord Returns the ordinal number of an ordinal-type value. I looked at the sample program, but it doesn't really make a lot of sense to me.
uses WinCrt;
type
Colors = (RED,BLUE,GREEN);
begin
Writeln('BLUE has an ordinal value of ',
Ord(BLUE));
Writeln('The ASCII code for "c" is ',
Ord('c'), ' decimal');
end.
I thought ord would have an ordinal value of 2, because it's after red but when I run it it says 1. Also what is all this ASCII stuff? Please just explain what ord does, and how I would set it up. I really appreciate the help.
Thanks,
Brian
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: grg99Posted on 2003-08-27 at 14:33:15ID: 9235976
Ordinals start at zero, so ord(red)=0, ord(blue)=1, ...etc...
f you take the ord() of a char, (I assume c is declared as "c: char"), you get the underling numerical
code for the character. Most systems use the ASCII character code, so ord('A') = 65, and so on,
see an ASCII code chart for all the info.