I have a table in Oracle with a VARCHAR column called DESCRIPTION. Some lines contain non-printable characters, such as a character with a numeric value of 150 (which is not in Latin-1 and is the "beginning of a protected zone" in Unicode).
I want to select all rows whose DESCRIPTION columns contain a character whose numeric value is between 128 and 160. Is there a way to do this without a long list of LIKE OR'ed sentences together? I assume that this can be done using regular expressions, but I have not found a way to do this.
source
share