windows - Batch to find and replace -
I need to replace all the versions of a specific string with spaces more precisely, give me a batch file Locate all "NaN" in a text file, and replace it with "" (empty space). How can I do this?
Best
CB
If you download stuff You can use the example
sed -i.bak "s / nan / g / file"
Comments
Post a Comment