gpt4 book ai didi

powershell - 使用 PowerShell 确定文本文件中一行的长度

转载 作者:行者123 更新时间:2023-12-02 07:39:37 25 4
gpt4 key购买 nike

我是 PowerShell 的新手,但我想使用它,因为在 Windows 批处理中没有简单的方法来获取字符串的长度。

我需要在 PowerShell 中编写一段代码,遍历 .txt 文件中的每一行并确定该行的字符长度。如果字符长度超过 250,那么......等等。

....etc 部分目前并不重要:)

在 Windows 批处理中我会这样写:

FOR /F %%A IN ("C:\TestFile.txt") DO (
SET LINE=%%A
If LINE > 250 characters then ( ' This line is made up
....etc
)

我该怎么做?

最佳答案

以下将做你想做的:

$data = Get-Content "C:\TestFile.txt"
foreach($line in $data)
{
if ($line.Length -gt 250) {
Write-Host "A match"
}
}

关于powershell - 使用 PowerShell 确定文本文件中一行的长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12520942/

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