以下 powershell 脚本在有逗号时输出两次结果。它将字符串分隔为两个条目。我怎样才能让它将其视为一个字符串而不是两个?
Function Get-Weather {
[Alias('Wttr')]
[Cmdletbinding()]
Param(
[Parameter(
Mandatory = $true,
HelpMessage = 'Enter name of the City to get weather report',
ValueFromPipeline = $true,
Position = 0
)]
[ValidateNotNullOrEmpty()]
[string[]] $City,
[switch] $Tomorrow,
[switch] $DayAfterTomorrow
)
Process
{
Foreach($Item in $City){
try {
# Check Operating System Version
If((Get-WmiObject win32_operatingsystem).caption -like "*Windows 10*") {
$Weather = $(Invoke-WebRequest "http://wttr.in/$City" -UserAgent curl -UseBasicParsing).content -split "`n"
}
else {
$Weather = (Invoke-WebRequest "http://wttr.in/$City" -UseBasicParsing).ParsedHtml.body.outerText -split "`n"
}
If($Weather)
{
$Weather[0..16]
If($Tomorrow){ $Weather[17..26] }
If($DayAfterTomorrow){ $Weather[27..36] }
}
}
catch {
$_.exception.Message
}
}
}
}
Get-Weather Shrewsbury,MA?n1
答案1
还要记住,当您使用单引号时,“单引号(单引号字符串)”会将您键入的字符串准确传递给命令。不会执行任何替换。而当您使用双引号时,“双引号(双引号字符串)”会将以美元符号 ($) 开头的变量名替换为变量的值,然后再将字符串传递给命令进行处理。
这是来自:https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_quoting_rules?view=powershell-6适用于 PowerShell 6,但相同的规则也适用于 PowerShell 1 到 6。
因此,除非您需要在字符串中使用变量,否则单引号将强制 PowerShell 按照您编写的方式使用字符串。