试图找到我的文件中可被3整除的数字。如何让我的foreach循环单独读取每个数字?我试图弄清楚如何将文件放入数组中,这对我有帮助吗?
这是我的档案:
row2.getAttributeNode("desc").setValue("valor")
到目前为止,这是我的代码:
6 9 7
-----
5 2 9
3 4 4
1 6 9
答案 0 :(得分:1)
试试这个
$myarray=get-content C:\temp\test.csv | %{$_ -split " "} | %{if ($_ -match "\w+" -and ([int]$_ % 3) -eq 0) {[int]$_}}