ends-with
Retourne true si le string fournit dans l'argument string se termine avec le string fourni dans l'argument end.
Signature
ends-with(string:string, end:string) -> Boolean |
Paramètres
Nom | Type | Description |
---|---|---|
string | string | Le string d’entrée. |
end | string | La valeur string à vérifier. |
Exemples
L’expression suivante retournetrue:
ends-with('cat', 't') |
L’expression suivante retourne false:
ends-with('cat', 'a') |