sql >> Database >  >> RDS >> Oracle

Zoek uit of een string alleen ASCII-tekens bevat

U kunt TRANSLATE . gebruiken om dit te doen. Kortom, translate verwijder alle afdrukbare ASCII-tekens (er zijn er niet zo veel) en kijk wat je nog over hebt.

Hier is een query die het doet:

WITH input ( p_string_to_test) AS ( 
SELECT 'This this string' FROM DUAL UNION ALL
SELECT 'Test this ' || CHR(7) || ' string too!' FROM DUAL UNION ALL
SELECT 'xxx' FROM DUAL)
SELECT p_string_to_test, 
       case when translate(p_string_to_test, 
       chr(0) || q'[ !"#$%&'()*+,-./0123456789:;<=>[email protected][\]^_`abcdefghijklmnopqrstuvwxyz{|}~]', 
       chr(0)) is null then 'Yes' else 'No' END is_ascii
FROM input;


  1. classpath specificeren voor standalone jython

  2. Wat is er nieuw in MariaDB Cluster 10.4

  3. Rails &MSSQL 2008 - Zullen we barrières raken?

  4. Caching in JDBC