Lucee Function Reference
left()
Returns a substring from beginning of the input string, with a length specified by the count argument.
Beispiel
left(string string,number count):string
Kategorie
string
Argumente
Die Argumente für diese Funktion sind fest vorgegeben. Ausser den nachfolgenden Argumenten dürfen keine weiteren verwendet werden.
Name | Typ | Required | Beschreibung |
---|---|---|---|
string | string | Yes | A string or a variable that contains one. |
count | number | Yes |
A non-zero integer. A positive value of n will return n characters from the beginning of the string. A negative value of n will return (length - n) characters from the beginning of the string. |