StringType.StrCmp(String, String, Boolean) 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.
Compare deux chaînes.
Cette API prend en charge l'infrastructure du produit et n'est pas destinée à être utilisée directement à partir de votre code.
public:
static int StrCmp(System::String ^ sLeft, System::String ^ sRight, bool TextCompare);
public static int StrCmp (string? sLeft, string? sRight, bool TextCompare);
public static int StrCmp (string sLeft, string sRight, bool TextCompare);
static member StrCmp : string * string * bool -> int
Public Shared Function StrCmp (sLeft As String, sRight As String, TextCompare As Boolean) As Integer
Public Function StrCmp (sLeft As String, sRight As String, TextCompare As Boolean) As Integer
Paramètres
- sLeft
- String
Obligatoire. Chaîne à comparer à sRight
.
- sRight
- String
Obligatoire. Chaîne à comparer à sLeft
.
- TextCompare
- Boolean
Obligatoire. True
pour effectuer une comparaison ne respectant pas la casse ; sinon, False
.
Retours
Valeur | Condition |
---|---|
zéro | Les deux chaînes sont égales. |
inférieure à zéro |
sLeft est inférieur à sRight .
|
supérieure à zéro |
sLeft est supérieur à sRight .
|
Remarques
Cette classe prend en charge le compilateur Visual Basic et n’est pas destinée à être utilisée directement à partir de votre code.