Oracle 获取字符串中所有中文汉字(不含标点符号)

CREATE OR REPLACE Function F_GetCHT(Str Varchar2) Return Varchar2 Is
  I       Int;
  Sub_Str Varchar2(500);
  Str2    Varchar2(500);
  Str1    Varchar2(500);
  Str3    Varchar2(500);
  Len     Int;
Begin
  Str2 := Str;
  Select Length(Str2) Into I From Dual;
  While I > 0 Loop
    select substr(str2, 1, 1) into Sub_Str from dual;
    Select asciistr(Sub_Str) Into str3 From Dual;
    Select substr(str3, 1, 3) Into str3 From Dual;
    select lengthb(sub_str) into len from dual;
    If str3 != '\FF' and len = 3 Then
      str1 := str1 || Sub_Str;
    End If;
    Select Substr(Str2, 2, Length(Str2)) Into Str2 From Dual;
    Select Length(Str2) Into I From Dual;
  End Loop;
  if Str1 is null then
    Return substr(Str, 10);
  else
    Return Str1;
  end if;
End;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值