1

知道如何将变量输出括在分号中吗?

例如:

$animal = "cat"

我对 $animal 的期望输出是“cat”和分号。有什么我能做的吗?

我尝试使用 ' 将分号解析为输出,但它周围会有空格。例如,如果我这样做

写主机 '"'$animal'"'

输出将是“ cat ”,周围有空格。我希望它完全是“猫”

谢谢

4

1 回答 1

2

尝试用单引号括起来:

$animal = '"cat"'

或者,如果您只想将write-host转义双引号与 ` 一起使用

$animal = "cat"

write-host "`"$animal`""
于 2013-02-21T12:46:45.457 回答