StringPrototype.localeCompare(Object, Object) Método

Definición

Compara las dos cadenas especificadas y devuelve un entero que indica la relación léxica entre ellas.

Esta API admite la infraestructura de producto y no está pensada para usarse directamente en el código.

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

Parámetros

thisob
Object

Objeto en el que actúa este método.

thatob
Object

Cadena que se va a comparar con thisob.

Devoluciones

Devuelve un valor negativo cuando thisob es menor que thatob; cero cuando thisob es igual que thatob; un valor positivo cuando thisob es mayor que thatob.

Atributos

Se aplica a

Consulte también