Function CharMix() Foundation

Mixes characters of two strings.

Syntax
CharMix( <cString1>, ;
         <cString2>  ;
       ) --> cResultString
Return

Returns a string whose characters are the result of mixing the characters of the passed two strings.

Description

Len( cString1 ) == Len( cString2 )

Each character in <cString2> will be concatenated to 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.

Feedback

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.