We can use the `regexp_replace` function to replace any non-printable characters with an empty string.
Next, we need to remove the carriage returns. We can use the `replace` function to replace any carriage returns (`\r`) with an empty string.
Finally, we need
Show more…