I am trying to copy lines a certain number of times following a certain tag.
If I have a text file like the following:
##TextLines##
Hi
Hello
##TextLines##
How do I erase the tags and copy the line once?
The end text file would look like:
Hi
Hello
Hi
Hello
Right now, I have a regular expression to find the tags and replace them with a blank newline character. I know most line-by-line reading is done using a for loop after opening a file. However, I don't want to process the specific line read, but the lines after. Any ideas?
Edit: There could be multiple tags and untagged text. For instance:
Hi
##CopyLine1##
Hello
##CopyLine1##
Greetings
##CopyLine2##
Howdy
##CopyLine2##
Hola
would become:
Hi
Hello
Hello
Greetings
Howdy
Howdy
Hola