i need to strip a part of a text file and write it to another one. the stripped text file should be saved as well.
Before:
Original.txt = "<xml><something>values</something><script>TEXT-TO-DELETE</script></xml>"
After:
Original.txt = "<xml><something>values</something><script></script></xml>"
Original_script.txt = "TEXT-TO-DELETE"
.. this is a multi-line file, so the script section is spanning many lines.
i tried from scripts posted, but can never understand the syntax..
"@echo off & setlocal
set "Data=D:\Original.txt"
set "Bak=%Data%.bak"
move "%Data%" "%Bak%"
for /f "usebackq delims=" %%i in ("%Bak%") do set "LINE=%%i" & call :ProcessLine
REM del "%Bak%"
goto :eof
:ProcessLine
echo %LINE%>>"%Data%"
echo %LINE%|findstr /b "<script>">nul || goto :eof
goto :eof"
this should be for windows computers .. (newer os support)
EDIT: since i cannot answer on my own thread i do it here:
thanks for the answer. unfortunately i dont want to use shareware for this. i am parsing in another language. just need to strip this.
this is a ridiculous 3-liner:
file={"p1.txt","p2.txt","p1.txt"}
find={"<search>","</search>,"<xml>"}
count=1
foreachline in file[count] print line to file[count]
if find[count] in line then count++
or similar ... .. if there wouldnt be 1000 ways/styles of scripting i could figure this myself. just thought some crack would give it a minute.