Functions.MBSubstr2 方法 | |
从字符串中提取子字符串,使用强类型和仅两个参数 — 子字符串和字符串均可包含双字节字符。
命名空间:
XSharp.VO
程序集:
XSharp.VO (在 XSharp.VO.dll 中) 版本:2.22 GA
语法 FUNCTION MBSubstr2(
cMBTarget AS STRING,
wStart AS DWORD
) AS STRING
public static string MBSubstr2(
string cMBTarget,
uint wStart
)
查看代码参数
- cMBTarget
- 类型:String
要提取子字符串的字符串。 - wStart
- 类型:UInt32
相对于 cMBTarget 的最左字符的起始位置。
返回值
类型:
String
子字符串。
如果未找到子字符串,或者如果您指定
wStart 为零,则 MBSubstr2() 返回 NULL_STRING。
备注
MBSubstr2() 是 MBSubstr() 的类型化版本。
MBSubstr() 的第三个参数(计数字符数)不允许。相反,此函数从指定位置开始,提取到字符串的末尾。
由于 wStart 不能为负,MBSubstr2() 无法相对于 cMBTarget 的最右字符提取子字符串,正如 MBSubstr() 所能做到的那样。
备注 提示: |
---|
This function is the same as Substr2() since .Net has unicode strings |
示例 参见 引用
MBSubstr2(String, UInt32)