<-- Previous || Up || Next -->

String Characters Bitwise Or Number Function
String Numerics Class

Public Function StringCharactersBitwiseOrNumber( _
      ByVal vString As Variant _
    , ByVal vNumber As Variant _
    ) As Variant

Perform the bitwise "Or" operation on each of the characters within a string.
The operation is performed between the number and each character within the string.

Truth table:
    OR      Var2
             0 1
           +-----
    Var1 0 | 0 1
         1 | 1 1
Examples:
    StringCharactersBitwiseOrNumber("AB", 128) = Chr$(193) + Chr$(194)
    StringCharactersBitwiseOrNumber(Chr$(2) + Chr$(3), 64) = "BC"
See also:
    StringCharactersBitwiseXorNumber Function
    StringCharactersBitwiseAndNumber Function
    OrValues Function
vString: String containing the characters which are each to be operated upon separately. Function returns Null if vValue is Null or cannot be fixed up to a String.

vNumber: The number which is operated upon with each of the characters in string vString. Function returns vString unchanged if vNumber if Null or cannot be fixed up to a String.
Note: vNumber should be between 0 (zero) and 255.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.