09-27-2021, 08:36 AM
In a recent post, I requested a feature on Alera, where the .au endings are removed. Since then, I learned to just add a line from Powershell to remove the endings as in the following example:
(gc C:\temporary\test.csv) | % {$_ -replace '.au',''} | out-file C:\temporary\test.csv -Fo -En ascii
The Powershell line works quite well, so unless other users need a feature like that, I wouldn't bother.
(gc C:\temporary\test.csv) | % {$_ -replace '.au',''} | out-file C:\temporary\test.csv -Fo -En ascii
The Powershell line works quite well, so unless other users need a feature like that, I wouldn't bother.