StringPrototype.localeCompare(Object, Object) Metodo

Definizione

Confronta le due stringhe specificate e restituisce un intero che indica la relazione lessicale tra di esse.

Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.

public:
 static int localeCompare(System::Object ^ thisob, System::Object ^ thatob);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_localeCompare)]
public static int localeCompare (object thisob, object thatob);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_localeCompare)>]
static member localeCompare : obj * obj -> int
Public Shared Function localeCompare (thisob As Object, thatob As Object) As Integer

Parametri

thisob
Object

Oggetto su cui agisce questo metodo.

thatob
Object

Stringa da confrontare con thisob.

Restituisce

Un valore negativo quando thisob è minore di thatob. Zero quando thisob è uguale a thatob. Un valore positivo quando thisob è maggiore di thatob.

Attributi

Si applica a

Vedi anche