PowerShell 技能连载 - 检测 CSV 的分隔符

当使用 Import-Csv 导入一个 CSV 文件,需要指定一个分隔符。如果用错了,显然会导入失败。您需要事先知道 CSV 文件使用的分隔符。

以下是一个简单的实践,展示了如何判断一个给定的 CSV 文件的分隔符:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function Get-CsvDelimiter($Path)
{
# get the header line
$headerLine = Get-Content $Path | Select-Object -First 1

# examine header line per character
$headerline.ToCharArray() |
# find all non-alphanumeric characters
Where-Object { $_ -notlike '[a-z0-9äöüß"()]' } |
# find the one that occurs most often
Group-Object -NoElement |
Sort-Object -Descending -Property Count |
# return it
Select-Object -First 1 -ExpandProperty Name
}

以下是一个测试:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
PS> Get-Date | Export-Csv -Path $env:temp\test.csv -NoTypeInformation

PS> Get-CsvDelimiter -Path $env:temp\test.csv
,

PS> Get-Date | Export-Csv -Path $env:temp\test.csv -NoTypeInformation -UseCulture

PS> Get-CsvDelimiter -Path $env:temp\test.csv
;

PS> Get-Date | Export-Csv -Path $env:temp\test.csv -NoTypeInformation -Delimiter '#'

PS> Get-CsvDelimiter -Path $env:temp\test.csv
#

PowerShell 技能连载 - 检测 CSV 的分隔符

http://blog.vichamp.com/2017/04/20/identifying-csv-delimiter/

作者

吴波

发布于

2017-04-20

更新于

2022-07-06

许可协议

评论