I have a column COL1 that contain different languages english ,arabic
col col1
__ __
1 information
2 معلومات
I am searching for a query to get me only the arabic character
col col1
__ __
2 معلومات
I found a link that use function REGEXP_LIKE that get only digits, is there a way that I can get the arabic ?
edit
I did this
and o.col1 not like ('%A%')
and o.col1 not like ('%B%')
and o.col1 not like ('%C%')
and o.col1 not like ('%D%')
and o.col1 not like ('%E%')
and o.col1 not like ('%F%')
and o.col1 not like ('%G%')
and o.col1 not like ('%H%')
and o.col1 not like ('%I%')
and o.col1 not like ('%J%')
and o.col1 not like ('%K%')
and o.col1 not like ('%L%')
and o.col1 not like ('%M%')
and o.col1 not like ('%N%')
and o.col1 not like ('%O%')
and o.col1 not like ('%P%')
and o.col1 not like ('%Q%')
and o.col1 not like ('%R%')
and o.col1 not like ('%S%')
and o.col1 not like ('%T%')
and o.col1 not like ('%U%')
and o.col1 not like ('%V%')
and o.col1 not like ('%W%')
and o.col1 not like ('%X%')
and o.col1 not like ('%Y%')
and o.col1 not like ('%Z%')