如果你知道循環(huán)的確切次數(shù)可以使用For循環(huán),F(xiàn)or循環(huán)屬于計(jì)數(shù)型循環(huán),一旦達(dá)到最大次數(shù),循環(huán)就會(huì)自動(dòng)終止。下面的例子通過循環(huán)求1-100的數(shù)列和。
復(fù)制代碼 代碼如下:
$sum=0
for($i=1;$i -le 100;$i++)
{
$sum+=$i
}
$sum
For循環(huán)是特殊類型的While循環(huán)
在For循環(huán)開始的圓括號(hào)中,由分號(hào)隔開的語句為循環(huán)的控制條件,分別為:初始化,循環(huán)執(zhí)行滿足的條件,增量。
For循環(huán)的控制語句第一個(gè)和第三個(gè)可以為空:
復(fù)制代碼 代碼如下:
$sum=0
$i=1
for(;$i -le 100;)
{
$sum+=$i
$i++
}
$sum
For循環(huán)的特殊應(yīng)用
上面的For循環(huán)示例停留在數(shù)字層面上,其實(shí)While循環(huán)能辦到的事,F(xiàn)or循環(huán)也可以,只是可能有時(shí)不方便而已。例如判斷域名的例子:
復(fù)制代碼 代碼如下:
for($domain="";!($domain -like "www.*.*");$domain=Read-Host "Input domain")
{
Write-Host -ForegroundColor "Green" "Please give a valid domain name."
}
Please give a valid domain name.
Input domain: www
Please give a valid domain name.
Input domain: mossfly.com
Please give a valid domain name.
下面的例子演示逐行讀取文本文件
復(fù)制代碼 代碼如下:
for($file=[IO.File]::OpenText("c:autoexec.bat") ; !($file.EndOfStream);$line=$file.ReadLine() )
{
$line;
}
$file.Close()
REM Dummy file for NTVDM
您可能感興趣的文章:- Windows Powershell IF-ELSEIF-ELSE 語句
- Windows Powershell Switch 語句
- Windows Powershell ForEach-Object 循環(huán)
- Windows Powershell Foreach 循環(huán)
- Windows Powershell Do While 循環(huán)
- Windows Powershell Switch 循環(huán)