I have a file having following contents -
SF:D:\Saurabh\Work\WS\devicehowto.war\scripts\.\Greeter.js
DA:1,2
DA:4,2
DA:5,2
end_of_record
SF:D:\Saurabh\Work\WS\devicehowto.war\scripts\.\GreeterTest.js
DA:1,2
DA:3,2
DA:4,2
end_of_record
I need a batch script to replace all occurrence of "D:\Saurabh\Work\WS\devicehowto.war\scripts.\" with space character. So, after running the batch script the content should look like -
SF:Greeter.js
DA:1,2
DA:4,2
DA:5,2
end_of_record
SF:GreeterTest.js
DA:1,2
DA:3,2
DA:4,2
end_of_record
Please help. Thanks.