Condetional break inside the For loop and continue execution
如果循环中的条件是/是真的,如何中断循环并从循环后的下一行继续执行。我尝试过
1 2 3 4 5 6 | Dim i As Integer For i = 1 To 50 If i > 35 Then ' break the loop End If Next |
我试过使用
1 2 3 4 | If i > 35 Then GoTo lbl End If lbl: ' code comes here |
谢谢您。。。。。。
1 2 3 | If i > 35 Then Exit For End If |
但是,如果
您可以使用
1 2 3 4 5 6 | Dim i As Integer For i = 1 To 50 If i > 35 Then Exit For End If Next |