ถ้าฉันทำสิ่งต่อไปนี้ในสคริปต์ PowerShell:
$range = 1..100
ForEach ($_ in $range) {
if ($_ % 7 -ne 0 ) { continue; }
Write-Host "$($_) is a multiple of 7"
}
ฉันได้ผลลัพธ์ที่คาดหวังของ:
7 is a multiple of 7
14 is a multiple of 7
21 is a multiple of 7
28 is a multiple of 7
35 is a multiple of 7
42 is a multiple of 7
49 is a multiple of 7
56 is a multiple of 7
63 is a multiple of 7
70 is a multiple of 7
77 is a multiple of 7
84 is a multiple of 7
91 is a multiple of 7
98 is a multiple of 7
แต่ถ้าผมใช้ท่อและForEach-Object
, continue
ดูเหมือนว่าจะแยกออกจากวงท่อ
1..100 | ForEach-Object {
if ($_ % 7 -ne 0 ) { continue; }
Write-Host "$($_) is a multiple of 7"
}
ฉันสามารถรับcontinue
พฤติกรรมที่เหมือนในขณะที่ยังทำ ForEach-Object ได้หรือไม่ดังนั้นฉันจึงไม่ต้องแยกไปป์ไลน์ของฉัน
foreach
: techotopia.com/index.php/…