I have a text file filled with characters:
ABCABCABCABC
...and with a script (Batch, VBS, Powershell, anything simple for Windows really) am trying to automatically add a new line for every instance of a certain character, in this case the letter A, so the output would then appear as such:
ABC
ABC
ABC
ABC
How can this be accomplished with any of the scripting tools I mentioned above?
Much appreciated, thanks a bunch!