WindowsSubstring 函数 (winstring.h)
从指定字符串检索子字符串。 子字符串从指定的字符位置开始。
语法
HRESULT WindowsSubstring(
HSTRING string,
UINT32 startIndex,
HSTRING *newString
);
参数
string
类型:[in] HSTRING
原始字符串。
startIndex
类型:[in] UINT32
此实例中子字符串的起始字符位置(从零开始)。
newString
类型:[out] HSTRING*
与字符串中 startIndex 处开始的子字符串等效的字符串;如果 startIndex 等于字符串的长度,则为 NULL。
返回值
类型: HRESULT
此函数可以返回其中一个值。
返回代码 | 说明 |
---|---|
|
已成功创建子字符串。 |
|
newString 为 NULL。 |
|
startIndex 大于 字符串的长度。 |
|
未能分配新的子字符串。 |
注解
每次对 WindowsSubstring 函数的调用都必须与对 WindowsDeleteString 的相应调用匹配。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows 8 [桌面应用 |UWP 应用] |
最低受支持的服务器 | Windows Server 2012 [桌面应用 |UWP 应用] |
目标平台 | Windows |
标头 | winstring.h |