我有一个包含各种数据的数据库,我这样导入和导出
$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
文件时,如何删除这些引号?
答案 0 :(得分:2)
输出到.txt文件时可以使用Out-File
$Col1| Out-file C:\Users\Admin\Desktop\Names.txt