![]() |
Remove ".au" endings - Printable Version +- Alera Forum (https://aleratrading.com/forum) +-- Forum: Alera Portfolio Manager (https://aleratrading.com/forum/forumdisplay.php?fid=1) +--- Forum: Feature Requests (https://aleratrading.com/forum/forumdisplay.php?fid=5) +--- Thread: Remove ".au" endings (/showthread.php?tid=439) |
Remove ".au" endings - Marcel - 09-27-2021 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. |