vote up -1 vote down star

I want to make an Oracle function to remove 'garbage' from user input values, but there's also a requirement that users may enter Unicode text which I'm supposed to leave as is.

REGEXP_REPLACE (search_text, '[^0-9A-Za-z]', '') takes care of non-Unicode, how can I check that varchar2 value contains Unicode characters?

Looks like I could compare results of LENGTH(search_text) and LENGTHB(search_text) to find whether characters take more than 1 byte. Is there a better way of doing it?

flag
Could you give examples for what kind of characters you want to remove? Do you want to remove invisible characters? Do you want to collapse whitespaces? Do you want to remove symbols like arrows? Are Chinese Symbols OK? – Karl Bartel Jun 8 at 17:05
You need to be clear about what you're trying to accomplish. Unicode covers all characters including ascii ones. Are there certain characters which are considered "bad"? Why or why not? Without more information nobody can give a solid answer that will help you. – Adam Hawkes Aug 20 at 2:05

2 Answers

vote up 1 vote down

Oracle has a function called asciistr, which takes any unicode characters that can't be represented in ascii and coverts it to the hex equivalent. So for instance:

asciistr('A B C Ä Ê')   would return 'A B C \00C4 \00CA'

You should then be able to write a regexp_replace algorithm to strip anything of the form '\XXXX'.

link|flag
I don't need to stip Unicode. If the string contains Unicode I'm supposed to leave it as is. – unknown (google) Mar 10 at 14:48
vote up -1 vote down

What do you mean by "Unicode characters?" The characters you list are "Unicode."

Do you mean "characters that are numeric or letters in any language?" Surely you don't mean ASCII because you've eliminate most of the ASCII characters too in your example.

link|flag
Well, it is about cleaning up ASCII input and leaving Unicode input as is. – unknown (google) Feb 26 at 16:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.