gpt4 book ai didi

powershell - powershell字符串仅包含数字

转载 作者:行者123 更新时间:2023-12-03 01:15:58 25 4
gpt4 key购买 nike

我有一个包含文件夹名称的数组。我想遍历此数组,并找出一个条目的长度是否仅为7,并且仅包含数字。

有人可以按正确的方向 push 我吗?谢谢!

最佳答案

一种解决方案是在遍历数组名称时检查是否满足两个条件,如下所示:

foreach ($name in "test", "1234567", "test02", "001") {
if ($name.Length -eq 7 -and $name -match '^\d+$'){
Write-Host $name
}
}

关于powershell - powershell字符串仅包含数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29961152/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com