1 2 my $holdTerminator = $/; 3 undef $/; 4 5 if (open(FILE, '<c:\games.xml')) { 6 $file = <FILE>; 7 } 8 $/ = $holdTerminator; 9 10 @array = split /\<\/game\>/, $file; 11 open(FILE1, '>c:\newgames.xml'); 12 13 foreach $line (@array){ 14 $line =~ 15 s/(\n\s+.*?"Title">)(.)(.*?)"Genre">.*?(<\/property>)/$1$2$3"Letter">$2$4/is 16 ; 17 print FILE1 $line; 18 print FILE1 '</game>'; 19 20 } 21 close(FILE1);
You need to create an account or log in to post comments to this site.