Fonction WindowsSubstring (winstring.h)
Récupère une sous-chaîne à partir de la chaîne spécifiée. La sous-chaîne commence à la position de caractère spécifiée.
Syntaxe
HRESULT WindowsSubstring(
HSTRING string,
UINT32 startIndex,
HSTRING *newString
);
Paramètres
string
Type : [in] HSTRING
Chaîne d'origine.
startIndex
Type : [in] UINT32
Position du caractère de départ de base zéro d’une sous-chaîne de cette instance.
newString
Type : [out] HSTRING*
Chaîne équivalente à la sous-chaîne qui commence à startIndex dans string, ou NULL si startIndex est égal à la longueur de la chaîne.
Valeur retournée
Type : HRESULT
Cette fonction peut retourner l’une de ces valeurs.
Code de retour | Description |
---|---|
|
La sous-chaîne a été créée avec succès. |
|
newString a lavaleur NULL. |
|
startIndex est supérieur à la longueur de la chaîne. |
|
Échec de l’allocation de la nouvelle sous-chaîne. |
Remarques
Chaque appel à la fonction WindowsSubstring doit être mis en correspondance avec un appel correspondant à WindowsDeleteString.
Configuration requise
Condition requise | Valeur |
---|---|
Client minimal pris en charge | Windows 8 [applications de bureau | Applications UWP] |
Serveur minimal pris en charge | Windows Server 2012 [applications de bureau | Applications UWP] |
Plateforme cible | Windows |
En-tête | winstring.h |