in reply to replace specical char ^@ to empty char

^@ is often used to represent chr(0).

Each of these will do:

s/\0//g; s/\c@//g; s/\x00//g;

Replies are listed 'Best First'.
Re^2: replace specical char ^@ to empty char
by jwkrahn (Abbot) on Nov 07, 2011 at 11:35 UTC