如何在powershell中将单引号和逗号放入字符串

时间:2016-04-14 12:50:57

标签: powershell

我试图在行尾添加逗号单引号,但无法想到我是如何实现这一目标的。到目前为止,我只能在最后用逗号添加单引号,但我想在行的开头放置单引号。有人可以帮忙吗

我想实现'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

1 个答案:

答案 0 :(得分:0)

此?

function append-text { 
process{
foreach-object {"'" + $_ + "',"}
} 
}