Search found 1 match

by sandeepshampur
07 Oct 2018 07:50
Forum: DOS Batch Forum
Topic: Reading file with special characters
Replies: 3
Views: 3583

Reading file with special characters

I am trying to read a file line by line that contains special characters like ")", "&" without success as I get error like "-10314679.html: was unexpected at this time.". Here is the code. for /f "tokens=1 delims=@" %%A in (_HashList.tmp) do ( call set myParam="%%A" call :myParseLine %%myParam%% ) e...