OpenTypeMethods.Substring Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne la sous-chaîne à l'aide de l'index de départ spécifié.
Surcharges
Substring(Object, Object) |
Retourne une sous-chaîne débutant après l'emplacement d'index de départ spécifié. |
Substring(Object, Object, Object) |
Retourne la sous-chaîne d'une longueur spécifique débutant après l'emplacement d'index de départ spécifié. |
Substring(Object, Object)
Retourne une sous-chaîne débutant après l'emplacement d'index de départ spécifié.
public:
static System::Object ^ Substring(System::Object ^ targetString, System::Object ^ startIndex);
public static object Substring (object targetString, object startIndex);
static member Substring : obj * obj -> obj
Public Shared Function Substring (targetString As Object, startIndex As Object) As Object
Paramètres
- targetString
- Object
Chaîne à partir de laquelle retourner la sous-chaîne.
- startIndex
- Object
Index de départ de la sous-chaîne.
Retours
Sous-chaîne.
Remarques
La méthode Substring retourne tous les caractères de startIndex
jusqu'à la fin de targetString
.
S’applique à
Substring(Object, Object, Object)
Retourne la sous-chaîne d'une longueur spécifique débutant après l'emplacement d'index de départ spécifié.
public:
static System::Object ^ Substring(System::Object ^ targetString, System::Object ^ startIndex, System::Object ^ length);
public static object Substring (object targetString, object startIndex, object length);
static member Substring : obj * obj * obj -> obj
Public Shared Function Substring (targetString As Object, startIndex As Object, length As Object) As Object
Paramètres
- targetString
- Object
Chaîne à partir de laquelle retourner la sous-chaîne.
- startIndex
- Object
Index de départ de la sous-chaîne.
- length
- Object
Longueur de la sous-chaîne.
Retours
Sous-chaîne.
Remarques
La méthode Substring retourne le nombre de caractères length
de startIndex
jusqu'à la fin de targetString
.