StringEvery()
Determines if all elements of a string satisfy a given condition.
Introduced: 6.0.0.105
StringEvery( string=string, closure=function );
Returns: Boolean
| Argument | Description |
|---|---|
|
string
string,
required
|
edit
Input string. Alias: inputString, object |
|
closure
function,
required
|
edit
Closure or a function reference that will be called for each of the iteration. Alias: function, callback, udf |
Examples
edit letters = "I love lucee";
callbackFunction = function(input){return input=="e";}
result = stringEvery(letters, callbackFunction);
writeDump(result);
result1 = stringEvery("Eee", callbackFunction);
writeDump(result1);
See also
- string.every()
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)