Hi all,
I need to replace all occurrences of a specific string with a blank space. More precisely, I need a batch file to find all "NaN" in a text file, and replace it with " " (a blank space). How can I do this?
Bests
CB
Hi all,
I need to replace all occurrences of a specific string with a blank space. More precisely, I need a batch file to find all "NaN" in a text file, and replace it with " " (a blank space). How can I do this?
Bests
CB
if you can download stuff, you can use GNU sed example
sed -i.bak "s/NaN/ /g" file