vote up 4 vote down star

Why does StrToInt('X5') returns 5 in Delphi? Is X some scientific notation or something like it? Are there some other chars which will be converted to Integer as well?

flag

5 Answers

vote up 10 vote down check

Not knowing Delphi, I'd wager that the "X" causes the function to assume the value is hexidecimal. Since 0x5 == 5, it appears to be working. Try X10 and see if you get back 16.

link|flag
vote up 1 vote down

It's hex notation. Try XF to see it return 15.

link|flag
1  
F is 15, not 16. – Pesto May 19 at 16:35
vote up 0 vote down

Probably hexadecimal notation.

The X indicates that the number that follows is hexadecimal (0-9 + A-F).

link|flag
vote up -1 vote down

As the comments have stated, StrToInt does not understand octal.

To answer your other question, if there are other strings that return unlikely answers... Try this:

StrToInt('010')

If it returns 8, then that function also understands octal notation.

link|flag
Nope, 010 is converted to 10, it just understands decimal and hexadecimal. – Fabio Gomes May 19 at 16:48
2  
$ - when leading should also indicate hexadecimal notation – Ben Schwehn May 19 at 16:54
Under Free Pascal, "&" signals octal and % binary. – Marco van de Voort May 19 at 20:42
vote up 6 vote down

In Delphi, hexadecimal values are marked with $ prefix:

a := $10;  // => a = 16

But since in some other languages (e.g. C) X is used for marking hexadecimal values, StrToInt function supports both $ and X prefixes, so both of the codes below return 16:

a := StrToInt('x10'); // => a = 16

a := StrToInt('$10'); // => a = 16
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.