I have a sed script to replace special characters with a space: s/\x00/ /g
, but when i run into the hex 1A character the sed program ends...
s/\x1A/ /g
I don't seem to have problems with any other characters, even those outside the ASCII range.
I have a sed script to replace special characters with a space:
s/\x00/ /g
, but when i run into the hex 1A character the sed program ends...
s/\x1A/ /g
I don't seem to have problems with any other characters, even those outside the ASCII range.