Convert Character Variable to Integer Variable

B

Brad Smallridge

How do you convert a character variable to an integer variable?

variable my_char_v : character;
variable file_size : integer;

.. . .

file_size := ???? my_char_v;
 
M

Mike Treseler

Brad said:
How do you convert a character variable to an integer variable?
variable my_char_v : character;
variable file_size : integer;

file_size := ???? my_char_v;


file_size := character'pos(my_char_v);


-- Mike Treseler
 
B

Brad Smallridge

file_size := character'pos(my_char_v);

Yeah that worked. Now one would think that'd
only work to convert to a character.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,904
Latest member
HealthyVisionsCBDPrice

Latest Threads

Top