如何扩展 Write-Host 或双引号中的成员变量?

发布于 2024-11-08 04:31:20 字数 413 浏览 0 评论 0原文

我编写了一个 PS 脚本,出于诊断目的,我使用 Write-Host 将消息回显到屏幕。只要我必须像这样扩展普通变量就可以了

写入主机“Hello World,$name”

当我尝试回显某些成员变量时出现问题,如下所示

Write-Host "Hello World, $Person.Name"

这不会按预期扩展。接下来的解决方法是使用 temp 变量 如下所示,

$personName  = $Person.Name
Write-Host "Hello World, $personName"

有没有一种优雅的方法可以在不使用临时变量的情况下执行此操作?

I have written a PS script and for diagnostic purpose am echoing messages to screen using Write-Host. This is fine as long as I have to expand normal variable like

Write-Host "Hello World, $name"

Problem starts when i try to echo some member variable as below

Write-Host "Hello World, $Person.Name"

This does not expand as expected. The work around that am following is, to use temp variable
as below

$personName  = $Person.Name
Write-Host "Hello World, $personName"

Is there an elegant way of doing this with out the use of temp variable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

青朷 2024-11-15 04:31:20

如果要在双引号字符串中使用属性访问,则需要一个子表达式:

"Foo $($bar.Property)"

If you want to use property access within double-quoted strings, you need a subexpression:

"Foo $($bar.Property)"
情泪▽动烟 2024-11-15 04:31:20

试试这个:

$dir = ls
Write-Host "Dir elements:" $dir.Length

Try this:

$dir = ls
Write-Host "Dir elements:" $dir.Length
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文