I'm trying to write a Powershell script that converts all scientific notations in a csv file to decimal.
For that :
$list = Import-CSV -Path .\this.csv -Delimiter ";" -Encoding UTF8
foreach($col in $list){
$col.price = $col.price -as [double]
Write-Output $col.price
}
But the results of this do not change the output strings.
Any solution ?
Thx. Etienne