gpt4 book ai didi

powershell - 在Powershell中从左到右抓取文件中每行的前10个字符

转载 作者:行者123 更新时间:2023-12-03 22:32:24 25 4
gpt4 key购买 nike

我想从$ line中获取前x个字符,并将其移至变量中。

我该怎么做呢?

这是我现有的代码

$data = get-content "C:\TestFile.txt"
foreach($line in $data)
{
if($line.length -gt 250){**get first x amount of characters into variable Y**}
}

最佳答案

像这样:

$data = get-content "TestFile.txt"
$amount = 10;
$y= @()
foreach($line in $data)
{
if ( $line.length -gt 250){ $y += $line.substring(0,$amount) }
}

关于powershell - 在Powershell中从左到右抓取文件中每行的前10个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12534569/

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