主頁 > 知識(shí)庫 > Windows Powershell For 循環(huán)

Windows Powershell For 循環(huán)

熱門標(biāo)簽:湖州電銷防封卡 雷霆電話機(jī)器人電話 什么渠道可以找外呼系統(tǒng)客戶 安徽400電話辦理 金融電銷公司怎么辦理外呼系統(tǒng) 信陽話務(wù)外呼系統(tǒng)怎么收費(fèi) 電話智能外呼系統(tǒng)誠信合作 使用電話機(jī)器人電銷是否違法 真人和電話機(jī)器人對話

如果你知道循環(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)

標(biāo)簽:濟(jì)南 山南 德州 岳陽 鶴崗 湛江 運(yùn)城 六盤水

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Windows Powershell For 循環(huán)》,本文關(guān)鍵詞  Windows,Powershell,For,循環(huán),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Windows Powershell For 循環(huán)》相關(guān)的同類信息!
  • 本頁收集關(guān)于Windows Powershell For 循環(huán)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章