string.each()

Iterates over a string and runs the closure function for each element in the string.

Introduced: 6.0.0.105

string.each( closure=function )

Returns: void

Argument Description
closure
function, required

Closure or a function reference that will be called for each of the iteration.

Alias: function, callback, udf

Examples

inputString="abcd";
	inputString.each(
		function(val) {
			writeoutput(val == "C");
		}
	);

See also