人民大寫轉換
create or replace function F_upper_money(p_num in number default null)
return nvarchar2 is
Result nvarchar2(100);
num_round nvarchar2(100) :=to_char(abs(round(p_num,2)));
num_left nvarchar2(100);
num_right nvarchar2(2);
str1 nchar(10) :='零壹貳叄肆伍陸柒捌玖';
str2 nchar(16) :='元拾佰仟萬拾佰仟億拾佰仟萬拾佰仟';
num_pre number(1):=1;
num_current number(1);
num_count number:=0;
begin
if p_num is null then return null;end if;
select to_char(
nvl(substr(to_char(num_round),1,
decode(instr(to_char(num_round),'.'),0,
length(num_round),instr(to_char(num_round),'.')-1)),
0)) into num_left from dual;
select substr(to_char(num_round),
decode(instr(to_char(num_round),'.'),0,
length(num_round)+1,instr(to_char(num_round),'.')+1),2)
into num_right from dual;
if length(num_left)>16 then return '**********'; end if;
if length(num_right)=2 then
if to_number(substr(num_right,1,1))=0 then
result:='零'||substr(str1,to_number(substr(num_right,2,1))+1,1)||'分';
else
result:=substr(str1,to_number(substr(num_right,1,1))+1,1)||'角'||
substr(str1,to_number(substr(num_right,2,1))+1,1)||'分';
end if;
elsif length(num_right)=1 then
result:=substr(str1,to_number(substr(num_right,1,1))+1,1)||'角整';
else
result :='整';
end if;
for i in reverse 1..length(num_left) loop
num_count:=num_count+1;
num_current:=to_number(substr(num_left,i,1));
if num_current>0 then
result:=substr(str1,num_current+1,1)||substr(str2,num_count,1)||result;
else
if mod(num_count-1,4)=0 then
result:=substr(str2,num_count,1)||result;
num_pre:=0;
end if;
if num_pre>0 or length(num_left)=1 then
result:=substr(str1,num_current+1,1)||result;
end if;
end if;
num_pre:=num_current;
end loop;
if p_num<0 then
result:='負'||result;
end if;
return Result;
exception
when others then
raise_application_error(-20001,'數字轉換大寫出現錯誤!'||sqlerrm);
end ;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8013558/viewspace-605248/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 字串-大小寫轉換字串
- 金額大寫轉換(轉)
- 大寫金額轉換 (轉)
- excel大寫字母轉換Excel
- JavaScript字母大小寫轉換JavaScript
- JavaScript字串大小寫轉換JavaScript字串
- 英文大小寫轉換
- 小寫金額轉換為大寫
- JavaScript 小寫數字轉換為大寫JavaScript
- 人民幣小寫轉換為大寫
- 使用正則 轉換大小寫
- javascript字串大小寫轉換效果JavaScript字串
- 金額大小寫轉換(3)
- js 轉換大小寫的方法JS
- 金額大寫轉換(摘)
- js 小寫轉換,取字尾JS
- 自寫Json轉換工具JSON
- 字串中大小寫轉換輸出字串
- Notepad++ 大小寫轉換
- 寫論文如何同義轉換
- string大小寫轉換函式函式
- linux命令列大小寫轉換Linux命令列
- 大小寫互換-"數字字串"轉換成數字字串
- js將小寫數字轉換為大寫形式JS
- Python數字轉換中文大寫Python
- MySQL字串函式 字串大小寫轉換MySql字串函式
- 人民幣大寫線上轉換工具
- PowerDesigner表名、列名大小寫轉換
- python 中字串大小寫轉換薦Python字串
- 13:將字串中的小寫字母轉換成大寫字母字串
- 在Oracle中將小寫人民幣轉換成大寫Oracle
- 在 Linux 命令列中轉換大小寫Linux命令列
- js 轉換時間戳的寫法ScriptJS時間戳
- Python中怎麼轉換字串大小寫Python字串
- 字串大小寫轉換和字串的比較字串
- MySQL-資料記錄大小寫轉換MySql
- CSS text-transform字元大小寫轉換CSSORM字元
- (C++字串大小寫轉換)相似的句子C++字串