Click or drag to resize

MBAtC2 Function

X#
Return the position of the first occurrence of a substring within a string, without regard for case — both the substring and the string can contain double-byte characters.

Namespace:  XSharp.VO
Assembly:  XSharp.VO (in XSharp.VO.dll) Version: 2.19
Syntax
 FUNCTION MBAtC2(
	cMBSearch AS STRING,
	cMBTarget AS STRING
) AS DWORD
Request Example View Source

Parameters

cMBSearch
Type: String
The substring for which to search.
cMBTarget
Type: String
The string in which to search.

Return Value

Type: DWord
The position of the first occurrence of cMBSearch within cMBTarget.
If cMBSearch is not found, MBAtC2() returns zero.
Remarks
This function is like MBAtC() except that it returns a WORD.
Remarks
Tip Tip
This function is the same as AtC2() since .Net has unicode strings
Examples