gpt4 book ai didi

arrays - Powershell逐字读取文本文件

转载 作者:行者123 更新时间:2023-12-02 22:17:38 25 4
gpt4 key购买 nike

因此,我正在尝试计算我的文本文件的字数,但是当我执行 get-content 时,数组会逐个字母地读取它们,因此它不允许我逐字比较它们。希望大家帮帮我!

清除主机 #函数

function Get-Articles (){

foreach($Word in $poem){
if($Articles -contains $Word){
$Counter++
}
}
write-host "The number of Articles in your sentence: $counter"
}

#Variables

$Counter = 0

$poem = $line
$Articles = "a","an","the"

#Logic

$fileExists = Test-Path "text.txt"

if($fileExists) {
$poem = Get-Content "text.txt"
}
else
{
Write-Output "The file SamMcGee does not exist"
exit(0)
}

$poem.Split(" ")

Get-Articles

最佳答案

你的脚本做了什么,稍微编辑了一下:

$poem = $line                    # set poem to $null (because $line is undefined)
$Articles = "a","an","the" # $Articles is an array of strings, ok

# check file exists (I skipped, it's fine)

$poem = Get-Content "text.txt" # Load content into $poem,
# also an array of strings, ok

$poem.Split(" ") # Apply .Split(" ") to the array.
# Powershell does that once for each line.
# You don't save it with $xyz =
# so it outputs the words onto the
# pipeline.
# You see them, but they are thrown away.

Get-Articles # Call a function (with no parameters)


function Get-Articles (){

# Poem wasn't passed in as a parameter, so
foreach($Word in $poem){ # Pull poem out of the parent scope.
# Still the original array of lines. unchanged.
# $word will then be _a whole line_.

if($Articles -contains $Word){ # $articles will never contain a whole line
$Counter++
}
}
write-host "The number of Articles in your sentence: $counter" # 0 everytime
}

您可能想要执行 $poem = $poem.Split("") 以使其成为一个单词数组而不是行。

或者你可以通过

将 $poem words 传递给函数
function Get-Articles ($poem) {
...

Get-Articles $poem.Split(" ")

您可以通过以下方式使用 PowerShell 管道:

$Articles = "a","an","the"

$poemArticles = (Get-Content "text.txt").Split(" ") | Where {$_ -in $Articles}
$counter = $poemArticles | Measure | Select -Expand Count
write-host "The number of Articles in your sentence: $counter"

关于arrays - Powershell逐字读取文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40433898/

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