Tag: 下一步

继续For循环

我有以下代码 For x = LBound(arr) To UBound(arr) sname = arr(x) If instr(sname, "Configuration item") Then '**(here i want to go to next x in loop and not complete the code below)** '// other code to copy past and do various stuff Next x 所以我想我可以简单地有语句Then Next x ,但是这给了一个“不适用于声明声明”的错误。 那么,我可以把什么后, If instr(sname, "Configuration item") Then使其继续为X的下一个值?

在VBScript上“继续”(到下一次迭代)

我和一个同事试图找出一种在VBScript“For / Next”循环中做相当于“continue”语句的方法。 在我们所看到的所有地方,我们发现人们无法在VBScript中做到这一点,没有讨厌的嵌套,这不是我们的select,因为它是一个相当大的循环。 我们提出这个想法。 它会像“继续(下一次迭代)”一样工作吗? 有没有人有更好的解决方法或改进build议? For i=1 to N For workaroundloop = 1 to 1 [Code] If Condition1 Then Exit For End If [MoreCode] If Condition2 Then Exit For End If [MoreCode] If Condition2 Then Exit For End If […] Next Next 感谢您的意见