Skip to content

EDI Troubleshooting

Vahid Daneshmand edited this page May 24, 2018 · 1 revision

Removing Illegal Non-ASCII Characters from a File

Step 1: Install Vim Editor: https://www.vim.org/download.php

Step 2: Open the file with Vim editor.

Step 3: Find all non-ASCII characters and remove them at once:

:s%/[^\x00-\x7F]//g

Step 4: Save the file:

:wq

Clone this wiki locally