VBScript » Statements » ForEach

Version: 2.0

Syntax:
<%For Each ... Next%>

The For Each conditional statement repeats a block of code for each element of an array or a collection of data.

You can use Exit For statements to exit out of a For Each loop. You can place For Each statements inside of other conditional statements. You must end all For Each statements with Next or you will get an error message.

Examples

Code:
<%
For Each i in myarray
Rem You can place all of the code you desire inside a For Each loop
Next
%>
Explanation:

In this example, the variable i will assume the value of each element in the array, one at a time, in order, from the first element in the array up to the last element actually being used.

Language(s): VBScript

See Also: