This commit is contained in:
robbwilcox
2024-10-05 12:27:45 -05:00
parent d15fc821c6
commit 99032730b5
11 changed files with 179 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
# Parameters
$inputFilePath = "./QueryResult.csv"
$outputFilePath = "./CleanResults.csv"
# Read the content of the file
$content = Get-Content -Path $inputFilePath -Raw
# Remove all double quotes
$contentWithoutQuotes = $content -replace '"', ''
# Write the modified content to a new file
$contentWithoutQuotes | Set-Content -Path $outputFilePath -NoNewline
Write-Output "Quotes removed. New file saved as: $outputFilePath"