Break instruction
The break statement exits the closest enclosing loop in which it appears. Control is passed to the statement that follows the exited statement, if any.
The syntax for the break statement is as follows:
##Break
Example:
The break statement is useful when filtering loops with a conditional statement. The following example breaks the inner most loop once the filter-expression is matched.

Provide Feedback