Action group: Base actions
This action is intended to interrupt the current iteration of the loop and start the next iteration. Actions in the loop set after the “Continue the loop” action will not be completed
None.
Must be used inside the loop, otherwise the System will display the warning message "Continue the loop action is outside the loop".
There are variables with the type "Array of numbers" and "Number", containing the value, respectively "(1988, 8, 2, 4)" and "2".
Terminate the loop until the value of the numeric variable is equal to the value "2".
If the array element is not equal to the value "2", then the current iteration must be interrupted and the next iteration must begin.
Solution
Add condition "If". Add a loop break and a blog message to the "True" branch.
Create a variable "Numeric_variable 2" with the type "Number", which will contain the value "2".
Create a "Collection" variable with elements"(1988, 8, 2, 4)", the passage through which will be carried out in a cycle.
Place the "Message in log" action in the workspace of the "If" action of the "False". Place the "Continue the loop" action in the workspace of the "If" action of the "False" branch.
Move the "Message in log" action to the workspace.
Click "Start" in the top panel to start the robot. The final scheme will look like this:
The algorithm went through the loop and was interrupted after setting the variable to "2".