我试图在行尾添加逗号单引号,但无法想到我是如何实现这一目标的。到目前为止,我只能在最后用逗号添加单引号,但我想在行的开头放置单引号。有人可以帮忙吗
我想实现'test1', 但目前我只能做test1',
#Define Variables
$a = 'P:\Powershell practice\Movefolder\LD.txt'
$b = get-content $a
#Define Functions
function append-text {
process{
foreach-object {$_ + "',"}
}
}
#Process Code
$b | append-text
答案 0 :(得分:0)
此?
function append-text {
process{
foreach-object {"'" + $_ + "',"}
}
}