Oracle PLSQL Demo - 22.查看字符串的长度[lengthb, length],判断字符串是否包含中文

--Count the length of string
select lengthb('select * from scott.emp') as countted_by_byte, length('select * from scott.emp') as countted_by_char from dual;

--For some character encoding, the length() and the lengthb() is same in english
--you may use this feature to check whether the string constains the chinese char
declare 
  v_char varchar2(50) := 'hello world你好';
begin
  
  if lengthb(v_char) = length(v_char) then
    dbms_output.put_line('it have not chinese...');
  else 
    dbms_output.put_line('it have chinese...');
  end if;
  
end;

 

posted @ 2015-06-29 23:07  nick_huang  阅读(796)  评论(0编辑  收藏  举报