I have a text file with data. And I would like to copy the text after #NAME:,
and add some more text after that.
Original file:
#NAME:,Disco Ball
http://my.site.com/discoball.mp3
#NAME:,Lasers
http://my.site.com/lasers.mp3
New text file:
#NAME:,mp3-id="Disco Ball",Disco Ball
http://my.site.com/discoball.mp3
#NAME:,mp3-id="Lasers",Lasers
http://my.site.com/lasers.mp3
As you can see, I want to be able to copy the text after #NAME:,
and then add it within the new text mp3-id=" ",
How can I go about doing this either in a batch file or VB script?