× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Adam Glauser wrote:

That is, assuming you mean the 7th bit counting from the least significant bit (which I think is the usual way).

FWIW, this only works if you use a literal, named constant, or numeric variable for the mask (the x'40' part). I checked the manual, because I realized that I forgot to take in to account that your character field is 2 long.

Here's what the manual says about operands of different lengths:
The length is the length of the largest operand. If the arguments have different lengths, they are padded on the left with bit zeros for numeric arguments. Shorter character arguments are padded on the right with bit ones.

So it appears that the literal x'40' is treated as numeric, and padded on the left with x'00', which is what we want in this case.

%BITAND won't allow one operand to be character and the other operand to be numeric. It considers a hex literal to be either character or numeric depending on the other operand.

The literal x'40' would be treated as character, so it would be padded on the right with bit ones.

To test the 7th bit of a 2-byte string, (I'm also assuming it's the 7th least significant bit), I think it's better to be explicit and spell out the 2-byte mask:
if (%bitand(charField : x'0040') = x'0040');
// bit 7 is on
endif;


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.