This function performs a Boolean operation on two numeric values and to return the numeric result.
result = BOOLWORD({AND},value,value) {OR} {XOR}
Parameters
Numeric result of the operation.
Perform a Boolean AND function.
Perform a Boolean OR function.
Perform a Boolean exclusive OR function.
Numeric value in character-string format.
ARG n MISSING OR INVALID
Example
boolword('OR','020','001') == '21' /* Leading zeros are ignored */ boolword('OR',2,1) == '3' boolword('AND','2','1') == '0'
Copyright © 2014 CA Technologies.
All rights reserved.
|
|