Quick tip: If you're doing a replace using strings of byte size, it is faster (over 3x faster) to use the ANY keyword.
Example:
My string was 4000 long btw. 
And it had a lot of $NULS.
Example:
Code:
REPLACE ANY $NUL WITH "." IN string4000 'was 3.2 times faster than REPLACE $NUL WITH "." IN string4000

And it had a lot of $NULS.
Comment