我想在我的脚本中执行几行代码几次。
objFSO.CreateTextFile (path & statFile)
Set objFile = objFSO.OpenTextFile (path & statFile, 8)
objFile.Write strLine
objFile.Close
是否可以为其分配变量(或其他东西),所以我不必一直写所有4行?
我知道条件陈述,但实际上没有条件。另一方面,我可以尝试通过使用总是正确的东西来欺骗IF
。
我是否可以指定a
= if...then
之类的东西?
答案 0 :(得分:2)
将可重复使用的代码放在Sub (or a Function):
中>> Sub CalledOften()
>> WScript.Echo "Here I am again"
>> End Sub
>> For i = 1 To 3
>> CalledOften
>> Next
>>
Here I am again
Here I am again
Here I am again