Hi, if I have a range of say 000080-0007FF and I want to see if a char containing hex is within that range, how can I do this? Thanks a lot.
Example
char t = 0xd790;
if (t is within range of 000080-0007FF) // true
Thanks
|
|
|
|
|
|
|
Since hex on a computer is nothing more than a way to print a number (like decimal), you can also do your comparison with plain old base 10 integers. if( (t >= 128) && (t <= 2047) ) { } More readable. |
||||
|
|
|
Since a char has a max value of 0xFF you cannot use it to compare anything with more hex digits than 2. |
||
|
|
|
|
@Greg, I tried it and I get warning: comparison is always false due to limited range of data type Ok just read your fix |
||||||
|
|
|
In C++, characters are interchangeable with integers and you can compare their values directly. Note that I used |
||
|
|