Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

ConvertTo-Csv/Export-Csv -UseCulture:$false uses the wrong delimiter in ouput #26513

Copy link
Copy link
@surfingoldelephant

Description

@surfingoldelephant
Issue body actions

Prerequisites

Summary

This is a sub-issue of #25242.

ConvertTo-Csv and Import-Csv do not respect an explicit $false value for the -UseCulture switch parameter.

-UseCulture:$false doesn't behave as if the switch wasn't specified. It also doesn't behave as if it was specified. Instead, it results in either no delimiter (ConvertTo-Csv) or a space as the delimiter (Import-Csv).

Steps to reproduce

ConvertTo-Csv:

[pscustomobject] @{ H1 = 'V1'; H2 = 'V2' } | ConvertTo-Csv -UseCulture:$false

Export-Csv:

$file = (New-TemporaryFile).FullName
[pscustomobject] @{ H1 = 'V1'; H2 = 'V2' } | Export-Csv -LiteralPath $file -UseCulture:$false

Expected behavior

ConvertTo-Csv:

"H1","H2"
"V1","V2"

Export-Csv:

"H1","H2"
"V1","V2"
  • -UseCulture:$false behaves as if the switch wasn't specified.
  • The default , item delimiter is used by both commands.

Actual behavior

ConvertTo-Csv:

"H1""H2"
"V1""V2"

Export-Csv:

"H1" "H2"
"V1" "V2"
  • -UseCulture:$false neither behaves as if the switch was or wasn't specified.
  • ConvertTo-Csv output includes no item delimiter.
  • Export-Csv output includes a space as the item delimiter.

Environment data

Name                           Value
----                           -----
PSVersion                      7.6.0-preview.5
PSEdition                      Core
GitCommitId                    7.6.0-preview.5
OS                             Microsoft Windows 10.0.19045
Platform                       Win32NT
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0, 5.0, 5.1…}
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1
WSManStackVersion              3.0
Reactions are currently unavailable

Metadata

Metadata

Assignees

No one assigned

    Labels

    Issue-BugIssue has been identified as a bug in the productIssue has been identified as a bug in the productUp-for-GrabsUp-for-grabs issues are not high priorities, and may be opportunities for external contributorsUp-for-grabs issues are not high priorities, and may be opportunities for external contributorsWG-Cmdlets-Utilitycmdlets in the Microsoft.PowerShell.Utility modulecmdlets in the Microsoft.PowerShell.Utility moduleWG-ReviewedA Working Group has reviewed this and made a recommendationA Working Group has reviewed this and made a recommendation

    Type

    No type
    No fields configured for issues without a type.

    Projects

    Status
    Reviewed
    Show more project fields

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      Morty Proxy This is a proxified and sanitized view of the page, visit original site.