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