Alera Forum

Full Version: Remove ".au" endings
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.