Removing “NUL” characters

前端 未结 7 1449
死守一世寂寞
死守一世寂寞 2020-11-29 19:44

I have got characters like that in my notepad++

When i am trying to copy whole line, i am actually copying everything until \"NUL\":

File:1
         


        
7条回答
  •  情深已故
    2020-11-29 20:27

    I was having same problem. The above put me on the right track but was not quite correct in my case. What did work was closely related:

    • Open your file in Notepad++
    • Type Control-A (select all)
    • Type Control-H (replace)
    • In 'Find What' type \x00
    • In 'Replace With' leave BLANK
    • In 'Search Mode' Selected 'Extended'
    • Then Click on 'Replace All'

提交回复
热议问题