0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

powershell csv 編集 .1→0.1

Last updated at Posted at 2024-08-29
csv_
# 数値の編集を行う関数を定義
function Fix-DecimalFormat {
    param (
        [string]$input
    )

    # 正規表現で先頭が"."の場合に"0"を追加
    if ($input -match '^\.\d+$') {
        return "0$input"
    } else {
        return $input
    }
}

# CSVデータを読み込み、処理し、エクスポートする関数
function Convert-CsvData {
    param (
        [string]$inputCsvPath,
        [string]$outputCsvPath
    )

    # CSVファイルをインポート
    $data = Import-Csv -Path $inputCsvPath

    # データを編集
    foreach ($row in $data) {
        foreach ($column in $row.PSObject.Properties) {
            # 数値型のデータをチェックし、編集
            if ($column.Value -is [string] -and $column.Value -match '^\.\d+$') {
                $column.Value = Fix-DecimalFormat $column.Value
            }
        }
    }

    # 編集したデータをCSVとしてエクスポート
    $data | Export-Csv -Path $outputCsvPath -NoTypeInformation -Encoding UTF8

    Write-Output "データの編集が完了しました。出力ファイル: $outputCsvPath"
}

# 使用例
$inputCsvPath = "input.csv"   # 入力CSVファイルのパスを指定
$outputCsvPath = "output.csv" # 出力CSVファイルのパスを指定

# 関数を呼び出して処理を実行
Convert-CsvData -inputCsvPath $inputCsvPath -outputCsvPath $outputCsvPath```
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?