Search found 3 matches

by heula
25 Dec 2015 04:13
Forum: DOS Batch Forum
Topic: Delete certain text from xml file with a batch file
Replies: 4
Views: 4238

Re: Delete certain text from xml file with a batch file

@echo off call jrepl "(?)" "" /L /I /F "guide.xml" /o - call jrepl "dit is temp_8" "" /L /I /F "guide.xml" /o - This above uses a native Windows batch script called Jrepl.bat (by dbenham) jrepl.bat can be downloaded from: m and it can also...
by heula
25 Dec 2015 01:41
Forum: DOS Batch Forum
Topic: Delete certain text from xml file with a batch file
Replies: 4
Views: 4238

Re: Delete certain text from xml file with a batch file

Just those terms. not the whole line. Line like it is now <title lang="nl">The big bang theory (?) </title> <desc lang="nl"> dit is temp_8 (Spike/tvgids.nl)</desc> Like I would see it. <title lang="nl">The big bang theory</title> <desc lang="nl"> (Spike/tvgids...
by heula
24 Dec 2015 13:39
Forum: DOS Batch Forum
Topic: Delete certain text from xml file with a batch file
Replies: 4
Views: 4238

Delete certain text from xml file with a batch file

I have a guide.xml file and that file contains multiple words / line I want to remove from the file. Is there a batch file that can do that for me? I want to run that batch as a scheduled task every day. In this https://dl.dropboxusercontent.com/u/901529/Media%20Browser/Overige%20fora/guide.xml file...