Page 1 of 1
Null Characters
Posted: Thu Jul 05, 2001 10:46 pm
by Hawaiian
Is there a way to strip null characters from a file?
Mahalo!
Re: Null Characters
Posted: Fri Jul 06, 2001 12:56 am
by Roy Beatty
Using regular expressions:
Find:::: \x00<br>
Replace: (with nothing or a space)
Re: Null Characters
Posted: Fri Jul 06, 2001 7:02 pm
by Hawaiian
Thanks!