How To

Converting Hexadecimal to Decimal

1

412lop 2023-06-14 17:54

I need to know how to do this because there’s no command to do this


McPepic 2023-06-14 19:00

Do you mean a hexadecimal number stored in a string?


412lop 2023-06-14 22:42

Yes I mean in a string


nathanielbabiak 2023-06-14 22:52

T$="C0DE"
PRINT VAL("0X"+T$)


Timo 2023-06-15 10:12

Officially there is no command, but the VAL function has this hidden feature by accident…


Log in to reply.