Functions.MBAt3 方法 | |
返回子字符串在字符串中第一次出现的位置,从特定位置开始搜索 — 子字符串和字符串均可包含双字节字符。
命名空间:
XSharp.VO
程序集:
XSharp.VO (在 XSharp.VO.dll 中) 版本:2.22 GA
语法 FUNCTION MBAt3(
cMBSearch AS STRING,
cMBTarget AS STRING,
wOffset AS DWORD
) AS DWORD
public static uint MBAt3(
string cMBSearch,
string cMBTarget,
uint wOffset
)
查看代码参数
- cMBSearch
- 类型:String
要搜索的子字符串。 - cMBTarget
- 类型:String
要搜索的字符串。 - wOffset
- 类型:UInt32
在字符串中开始搜索的位置。
值为零对应于第一个字节。
返回值
类型:
UInt32cMBSearch 在
cMBTarget 中第一次出现的位置。
如果未找到
cMBSearch,则 MBAt3() 返回零。
备注
此函数与 MBAt() 相同,但允许您指定开始搜索的偏移量。
备注 提示: |
---|
This function is the same as At3() since .Net has unicode strings |
示例 参见