MBRat3 Function | |
Return the position of the last occurrence of a substring within a string, starting at a specific position — 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 MBRat3(
cMBSearch AS STRING,
cMBTarget AS STRING,
wOffset AS DWORD
) AS DWORD
public static uint MBRat3(
string cMBSearch,
string cMBTarget,
uint wOffset
)
Request Example
View SourceParameters
- cMBSearch
- Type: String
The substring for which to search. - cMBTarget
- Type: String
The string in which to search. - wOffset
- Type: DWord
The position in the string at which to start searching.
A value of zero specifies the first byte.
Return Value
Type:
DWord
The position of
cMBSearch within
cMBTarget.
If
cMBSearch is not found, MBRAt3() returns zero.
Remarks
This function is like MBRAt(), except that you can specify an offset that tells where to start searching.
Remarks Tip |
---|
This function is the same as Rat3() since .Net has unicode strings |
Examples See Also