Break

The statement Break ends For … Do … Od, ForEach … Do … Od, and While … Do … Od loops. This statement is only allowed in repeating controls. Break is a command in itself and must be followed by a semicolon.

Example

Parameter Text Path;
Var Number Count;

For Count = 1 To length(Path) Do
  If substring (Path, Count, 1) = "\" Then
    Break;
  Fi;
Od;

This code searches for the first slash in the parameter and returns its position.