Functions.MBAtC 方法 | |
返回子字符串在字符串中第一次出现的位置,不区分大小写 — 子字符串和字符串均可包含双字节字符。
命名空间:
XSharp.VO
程序集:
XSharp.VO (在 XSharp.VO.dll 中) 版本:2.22 GA
语法 FUNCTION MBAtC(
cMBSearch AS STRING,
cMBTarget AS STRING
) AS DWORD
public static uint MBAtC(
string cMBSearch,
string cMBTarget
)
查看代码参数
- cMBSearch
- 类型:String
要搜索的子字符串。 - cMBTarget
- 类型:String
要搜索的字符串。
返回值
类型:
UInt32cMBSearch 在
cMBTarget 中第一次出现的位置。
如果未找到
cMBSearch,则 MBAtC() 返回零。
备注
此函数类似于 AtC(),但处理包含双字节字符的字符串。
备注 提示: |
---|
This function is the same as AtC() since .Net has unicode strings |
示例 参见