UIPATH-05-01-foreach-break-continue

Uipath中的 for each,break,continue

for each+ if + break

For Each:循环迭代一个列表、数组、或枚举等其他类型的集合, 可以遍历并分别处理每条信息。
Break: 跳出整个循环。

UIPATH-05-01-foreach-break-continue

for each+ if + break

UIPATH-05-01-foreach-break-continue
Continue: 立即跳出本次循环,continue之后的本次循环内的程序不会再执行下去。
UIPATH-05-01-foreach-break-continue
或者:
UIPATH-05-01-foreach-break-continue

总结: