gpt4 book ai didi

Powershell here-string 扩展

转载 作者:行者123 更新时间:2023-12-04 03:27:16 40 4
gpt4 key购买 nike

Here-strings

有一些关于 Powershell 'here-string' 的例子,但我几乎没有遇到过 'here-string' 扩展。所以我发布了这个以提供一些帮助。
当你想添加一些带换行符的文字时,单引号和双引号都不需要转义,也不需要像 "`r`n" 这样的换行符。 . 'here-strings' 在 PowerShell 中派上用场。
他们应该从

@"
和换行符,应该以换行符结束
"@

For example:                        |Result:
|
@" |
Hello world! 09/25/2014 11:39:56 | Hello world! 09/25/2014 11:39:56
'(this will appear as is)' | '(this will appear as is)'
! | !
"@ |

最佳答案

下面是如何引入 CmdLet 和一个日期变量来显示当前日期,如下所示:
例如下面是我们想要实现的:

Hello world! 09/25/2014 11:39:56
'(this will appear as is)'
!

方法如下:
@"
Hello world! $(Get-Date)
'(this will appear as is)'
!
"@

或使用变量:
$myDate = Get-Date
@"
Hello world! ${myDate}
'(this will appear as is)'
!
"@

关于Powershell here-string 扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26045893/

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