导入csv没有双引号

时间:2016-03-17 19:13:18

标签: powershell powershell-ise

我有一个包含各种数据的数据库,我这样导入和导出

$Col1= Import-CSV  C:\Users\Admin\Desktop\dbs.csv | select Col1 
$Col1|%{$(Get-Culture).TextInfo.ToTitleCase($_.GivenName)}
$Col1|  Export-Csv -NoTypeInformation   C:\Users\Admin\Desktop\Names.txt

当文件导出到Names.txt时,每行包含双重qoutes,如此

"Category"
"Employees" 

数据库的内容

Col1 #Col1 is the header or the name of the column
Category
Employees
...
...

csv中的数据导出到txt文件时,如何删除这些引号?

1 个答案:

答案 0 :(得分:2)

输出到.txt文件时可以使用Out-File

$Col1|  Out-file C:\Users\Admin\Desktop\Names.txt