Function CharOR() Foundation
Binary ORs the ASCII codes of corresponding characters in two strings.
CharOR( <cString1>, ;
<cString2> ;
) --> cResultString
Returns a string whose characters are the result of ORing the ASCII code of each character of the passed two strings.
Len( cString1 ) == Len( cString2 )
Each ASCII code of characters in <cString2> will be ORed with the ASCII code of the corresponding character in <cString1>.
Len( cString1 ) < Len( cString2 )
The function returns when the last character of <cString1> is reached.
Len( cString1 ) > Len( cString2 )
Once the end of <cString2> is reached the function starts with the first character of <cString2> again until the last character of <cString1> is processed.
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.