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

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

Examples

There are currently no examples for this function

See also