Click or drag to resize

ChrTranC Function

X#
Replaces each character in a character expression that matches a character in a second character expression with the corresponding character in a third character expression.

Namespace:  XSharp.VFP
Assembly:  XSharp.VFP (in XSharp.VFP.dll) Version: 2.19
Syntax
 FUNCTION ChrTranC(
	cSearchIn AS STRING,
	cSearchFor AS STRING,
	cReplaceWith AS STRING
) AS STRING
Request Example View Source

Parameters

cSearchIn
Type: String
Specifies the expression in which ChrTranC() replaces characters.
cSearchFor
Type: String
Specifies the expression containing the characters ChrTranC() looks for in cSearchIn.
cReplaceWith
Type: String
Specifies the expression containing the replacement characters. If a character in cSearchFor is found in cSearchIn, the character in cSearchIn is replaced by a character from cReplaceWith that's in the same position in cReplaceWith as the respective character in cSearchFor. If cReplaceWith has fewer characters than cSearchFor, the additional characters in cSearchIn are deleted from cSearchIn. If cReplaceWith has more characters than cSearchFor, the additional characters in cReplacementExpression are ignored.

Return Value

Type: String
Character
Remarks
The difference between ChrTranC() and ChrTran() can be ignored in X# because all characters are unicode, so there is no distinction between single byte and double-byte characters.
See Also