string.some()
This function calls a given closure/function with every element in a given string and returns true, if one of the closure calls returns true.
Introduced: 6.0.0.126
string.some( closure=function )
Returns: Boolean
| Argument | Description |
|---|---|
|
closure
function,
optional
|
edit
The value to find or a closure/function that gets every value of the array as input and returns true if the given value is right. Alias: function, callback, udf |
Usage Notes
editSince Lucee 6, this function iterates over each character in the string.
For list-based iteration with delimiters, use string.listSome() instead.
Examples
edit myString="lucee";
callback=(x)=>x >= 'a';
writeDump(myString.some(callback));
callback_1=(x)=>x >= 'z';
writeDump( myString.some(callback_1));