How to move a line of text to another place in the text file
Posted: Sun Apr 01, 2012 10:55 am
I would like to move "<id>tt1423894</id>" in between the "watched" and "genre" tags
from this:
to this:
from this:
Code: Select all
<movie>
<id>tt1423894</id>
<title>Barney's Version</title>
<plot></plot>
<genre></genre>
<rating></rating>
<year>2010</year>
<outline></outline>
<plot></plot>
<tagline></tagline>
<thumb>file:///E:/UMC/Barney's Version[Cover].jpg</thumb>
<fanart>file:///E:/UMC/Barney's Version[Backdrop].jpg</fanart>
<watched></watched>
<genre></genre>
</movie>
Code: Select all
<movie>
<title>Barney's Version</title>
<plot></plot>
<genre></genre>
<rating></rating>
<year>2010</year>
<outline></outline>
<plot></plot>
<tagline></tagline>
<thumb>file:///E:/UMC/Barney's Version[Cover].jpg</thumb>
<fanart>file:///E:/UMC/Barney's Version[Backdrop].jpg</fanart>
<watched></watched>
<id>tt1423894</id>
<genre></genre>
</movie>