我有一个 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 中。我尝试通过 using 使用 notepad++ (.*)\\
,它选择所有内容,包括最后一个“\”,但不知道如何将其切换为“,”。这对双引号也没有帮助。