JavaScript stringa di riferimento
Esempio
Controllare se una stringa termina con "universo.":
var str = "Hello world, welcome to the universe.";
var n = str.endsWith("universe.");
Il risultato di n sarà:
true
Prova tu stesso " Più "Provate voi stessi" esempi di seguito.
Definizione e utilizzo
Il endsWith()
metodo determina se una stringa termina con i caratteri di una stringa specificata.
Questo metodo restituisce true
se la stringa finisce con i personaggi, e false
in caso contrario.
Nota: Il endsWith()
metodo è case sensitive.
Supporto per il browser
metodo | |||||
---|---|---|---|---|---|
endsWith() | 41 | 12.0 | 17 | 9 | 36 |
Sintassi
string.endsWith( searchvalue , length )
valori dei parametri
Parameter | Description |
---|---|
searchvalue | Required. The string to search for |
length | Optional. Specify the length of the string to search. If omitted, the default value is the length of the string |
Dettagli tecnici
Valore di ritorno: | Un valore booleano. Restituisce true se la stringa finisce con il valore, altrimenti restituisce false |
---|---|
Versione JavaScript: | ECMAScript 6 |
Altri esempi
Controllare se una stringa termina con "mondo", supponendo che la stringa è lunga 11 caratteri:
var str = "Hello world, welcome to the universe.";
var n = str.endsWith("world", 11);
Il risultato di n sarà:
true
Prova tu stesso " JavaScript stringa di riferimento