$StrAnd: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 45: Line 45:




<h2>Products authorizing {{PAGENAMEE}}</h2><ul class="smallAndTightList">
==Products authorizing {{PAGENAMEE}}==
<ul class="smallAndTightList">
<li>[[Sirius functions]]</li>
<li>[[Sirius functions]]</li>
<li>[[Fast/Unload User Language Interface]]</li>
<li>[[Fast/Unload User Language Interface]]</li>

Revision as of 21:32, 7 November 2012

Bit-wise AND two strings

Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $StrAnd function is the BitAndString (String function).

This function performs a bit-wise AND of two strings.

The $StrAnd function accepts three arguments and returns a string result that is the bit-wise AND of the first two arguments, the shorter being padded with as many copies of the third argument as are required to make the string lengths equal.

The first argument is an arbitrary string.

The second argument is another arbitrary string.

The third argument is another arbitrary string that is appended to the shorter of the first two strings and replicated as many times as required to make the strings of equal length. If this value is not specified or is null it defaults to a single null byte (X'00').

Syntax

<section begin="syntax" />%STR = $StrAnd(string1, string2, pad) <section end="syntax" />

%STR is the bit-wise AND of string1 and string2.

For example

%X = $X2C('112233445566') %Y = $X2C('654321') %JUNK = $StrAnd(%X, %Y)

would set %JUNK to X'010221000000' and

%X = $X2C('112233445566') %JUNK = $StrAnd(%X, , $X2C('CC'))

would set %JUNK to X'000000444444' and

%X = $X2C('112233445566') %Y = $X2C('1122') %Z = $X2C('FF00') %JUNK = $StrAnd(%X, %Y, %Z)

would set %JUNK to X'112233005500'.


Products authorizing $StrAnd