I have got a csv with ";" delimiters which i imported with import-csv -delimiter ';' having done that i get an array with 3 Rows (class name name2) now the problem is: i need to remove "umlauts" from the array I already tried it like that
$csv1 = Import-Csv $PSScriptRoot\csvfile.csv -Delimiter ';'
$csv1.name2 = $csv1.Familienname -ireplace 'ä', 'ae'
$csv1.name2
to no avail, the output still remains the same (i.e ä stays ä and is not replaced by ae)
another idea I had was to write a loop that replaces the umlauts but I cant wrap my head around how to do that: could i do it somewhat like that
foreach ( ä,ö,ü in $csv1.name2)
{ replace with a,oe,ue}
I would already be very thankful for just some links that get me in the right direction.