create or replace function func_chinese
(p_str in varchar2, -- 輸入的字串
p_code in varchar2, -- dump(字串)
p_chinese in pls_integer -- 1, 提取漢字, 非1, 提取非漢字
) return varchar2
asv_code varchar2(32767) := substr(p_code,instr(p_code,':')+2);
v_chinese varchar2(32767) := '';
v_non_chinese varchar2(32767) := '';
v_comma pls_integer;
v_code_h pls_integer;
v_code_l pls_integer;
begin
if p_str is not null then
for i in 1..length(p_str) loop
if lengthb(substr(p_str,i,1))=2 then
v_comma := instr(v_code,',');
v_code_h := to_number(substr(v_code,1,v_comma-1));
v_code_l := to_number(substr(v_code,v_comma+1,abs(instr(v_code,',',1,2)-v_comma-1)));
if (v_code_h>=176 and v_code_h<=247 and v_code_l>=161 and v_code_l<=254) or
(v_code_h>=129 and v_code_h<=160 and v_code_l>=64 and v_code_l<=254 and nvl(v_code_l,127)!=127) or
(v_code_h>=170 and v_code_h<=254 and v_code_l>=64 and v_code_l<=160 and nvl(v_code_l,127)!=127) then
v_chinese := v_chinese||substr(p_str,i,1);
else
v_non_chinese := v_non_chinese||substr(p_str,i,1);
end if;
v_code := ltrim(v_code,'1234567890');
v_code := ltrim(v_code,',');
else
v_non_chinese := v_non_chinese||substr(p_str,i,1);
end if;
v_code := ltrim(v_code,'1234567890');
v_code := ltrim(v_code,',');
end loop;
if p_chinese = 1 then
return v_chinese;
else
return v_non_chinese;
end if;
else
return '';
end if;
end;
/sql> select * from t;
name
----------------------
新年快樂x狿x狿
199春天會來的
-----------------------
實驗1: 提取漢字
-----------------------
select name,func_chinese(name,dump(name),1) result from t;
name result
------------------------------ -----------
新年快樂x 新年快樂
狿x 狿
狿 狿
199春天會來的 春天會來的
-----------------------
實驗2: 提取非漢字
-----------------------
select name,func_chinese(name,dump(name),0) result from t;
name result
------------------------------ -------
新年快樂x x
狿x x
狿199 199
春天會來的
-----------------------
oracle 判斷字段是否含有中文
判斷某個字段是否含有中文。使用length 和lengthb 判斷 length 計算字元長度,lengthb 計算位元組長度 我們知道在資料庫中,漢字占用兩個 或三個 位元組,而其他字元占用乙個位元組,這樣通過兩個函式的比較就可以判斷出是否有中文,例 select length 測試 from d...
Oracle 判斷中文及全形 半形詳解
思路 1 去除特殊字元,避免 全形 字元,等字元的影響 2 依據 中文位元組長度 英文位元組長度 with t source string as 源字串 select 1 id,12中文abc!str from dual union allselect 2 id,34abc!str from dua...
oracle裡的判斷函式
乙個類似於判斷的函式.它就是decode.先來看看它的用法 decode 條件,值1,翻譯值1,值2,翻譯值2,值n,翻譯值n,預設值 它的意思也就是這樣 if 條件 值1 then return 翻譯值1 elsif 條件 值2 then return 翻譯值2 elsif 條件 值n then ...