MBRat Function | |
Return the position of the last occurrence of a substring within a string — 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 MBRat(
cMBSearch AS STRING,
cMBTarget AS STRING
) AS LONG
public static int MBRat(
string cMBSearch,
string cMBTarget
)
Request Example
View SourceParameters
- cMBSearch
- Type: String
The substring for which to search. - cMBTarget
- Type: String
The string in which to search. (To start at a specific offset, use MBRAt3().)
Return Value
Type:
Long
The position of
cMBSearch within
cMBTarget.
If
cMBSearch is not found, MBRAt() returns zero.
Remarks
This function is like RAt() except that it handles strings containing double-byte characters.
Remarks Tip |
---|
This function is the same as Rat() since .Net has unicode strings |
Examples See Also