4

how can i remove/replace "/" from a text file ? am using FART for this , it's working okey for all the characters but for some reason it doesn't see the "/" character

Fart.exe --remove myFile.txt "/" 
aschipfl
  • 33,626
  • 12
  • 54
  • 99
Exorcismus
  • 2,243
  • 1
  • 35
  • 68

3 Answers3

4

Ok, try with -C option

-C --c-style       Allow C-style extended characters (\xFF\0\t\n\r\\ etc.)
Pete
  • 57,112
  • 28
  • 117
  • 166
npocmaka
  • 55,367
  • 18
  • 148
  • 187
2

Try this

Fart.exe --remove --c-style myFile.txt "\/" 
Amit
  • 21
  • 1
0

For everyone trying to replace / with \:

fart.exe -C "your_file.txt" "\/" "\\\\"
rzickler
  • 11
  • 3