我在csv文件中有一个文件夹路径列表,例如
\Customer
\Customer\Customer A
\Customer\Customer A\Bob
\Customer\Customer B
\Supplier
"\Supplier\Supplier, A, B"
请注意双引号
我需要做的是将每行分成最后一行“\”,以便数据
,Customer
\Customer,Customer A
\Customer\Customer A,Bob
\Customer,Customer B
,Supplier
"\Supplier","Supplier, A, B"
请注意双引号
如果可能的话,我希望任何代码都在PowerShell中。我尝试使用notepad ++使用(.*)\\
,它选择所有内容,包括最后一个“\”,但不知道如何切换为“,”。这对双引号也没有帮助。
答案 0 :(得分:1)
$pattern = '\\([^\\]+)$'
$paths | Foreach-Object {
if($_ -like '"*"')
{
$_ -replace $pattern,'","$1'
}
else
{
$_ -replace $pattern,',$1'
}
}
答案 1 :(得分:0)
您可以使用String.LastIndexOf
来查找分割点。假设你想要的只是一个包含你的变化的字符串列表,这样的东西应该有用:
[String[]] $l = '\Customer',
'\Customer\Customer A',
'\Customer\Customer A\Bob',
'\Customer\Customer B',
'\Supplier',
'"\Supplier\Supplier, A, B"'
[String[]] $r = @()
foreach ($x in $l)
{
# work out whether we need to double-quote or not
if (($x[0] -eq '"') -and ($x[$x.Length - 1] -eq '"'))
{
$joiner = '","'
}
else
{
$joiner = ','
}
$i = $x.LastIndexOf('\')
$s = [String]::Concat($x.Substring(0, $i), $joiner, $x.Substring($i + 1))
$r = $r + $s
}
$r # contains your output