plsql小寫金額轉大寫金額函式
-
create or replace function comm.F_upper_money(p_num in number default null)
-
return nvarchar2 is
-
/*Ver:1.0 Created By xsb on 2003-8-18 For:
-
將金額數字(單位元)轉換為大寫(採用從低至高演算法)
-
數字整數部分不得超過16位,可以是負數。
-
Ver:1.1 Modified By xsb on 2003-8-20 For:個位數處理也放在For迴圈中。
-
Ver:1.2 Modified By xsb on 2003-8-22 For:分後不帶整字。
-
Ver:1.3 Modified By xsb on 2003-8-28 For:完善測試用例。
-
測試用例:
-
SET HEAD OFF
-
SET FEED OFF
-
select '無引數時='||f_upper_money() from dual;
-
select 'null='||f_upper_money(null) from dual;
-
select '0='||f_upper_money(0) from dual;
-
select '0.01='||f_upper_money(0.01) from dual;
-
select '0.126='||f_upper_money(0.126) from dual;
-
select '01.234='||f_upper_money(01.234) from dual;
-
select '10='||f_upper_money(10) from dual;
-
select '100.1='||f_upper_money(100.1) from dual;
-
select '100.01='||f_upper_money(100.01) from dual;
-
select '10000='||f_upper_money(10000) from dual;
-
select '10012.12='||f_upper_money(10012.12) from dual;
-
select '20000020.01='||f_upper_money(20000020.01) from dual;
-
select '3040506708.901='||f_upper_money(3040506708.901) from dual;
-
select '40005006078.001='||f_upper_money(40005006078.001) from dual;
-
select '-123456789.98='||f_upper_money(-123456789.98) from dual;
-
select '123456789123456789.89='||f_upper_money(123456789123456789.89) from dual;
-
-
*/
-
Result nvarchar2(100); --返回字串
-
num_round nvarchar2(100) := to_char(abs(round(p_num, 2))); --轉換數字為小數點後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; --轉換數字為null時返回null
-
-
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; --數字整數部分超過16位時
-
-
--採用從低至高的演算法,先處理小數點右邊的數字
-
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
-
--當前位上數字不為0按正常處理
-
result := substr(str1, num_current + 1, 1) ||
-
substr(str2, num_count, 1) || result;
-
else
-
--當前位上數字為0時
-
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
-
--上一位數字不為0或只有個位時
-
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/28878983/viewspace-2133889/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 小寫金額轉換為大寫
- Excel金額小寫轉大寫公式Excel公式
- 小寫數字金額轉大寫
- 小寫轉大寫金額[SQL SERVER] (轉)SQLServer
- 金額大寫轉換(轉)
- 大寫金額轉換 (轉)
- 金額大寫轉換(摘)
- 阿拉伯數字轉換成金額大寫金額(包括小數)
- 小寫轉大寫金額儲存過程[SQL SERVER]儲存過程SQLServer
- 小寫轉大寫金額在C++中的實現 (轉)C++
- 將金錢的金額轉換為大寫形式
- Python 轉換金額數字大寫為數字小寫Python
- 金額大小寫轉換(3)
- 將金錢數額轉換為大寫
- jquery金額數字轉為大寫數字jQuery
- asp.net 寫一個RMB金額大寫轉換器(原始碼)ASP.NET原始碼
- 金額數值轉換為中文大寫
- JavaScript將輸入的數字金額轉換成對應的中文大寫金額JavaScript
- 轉換金額大寫的SHELL程式(絕對透過驗證)(轉)
- 【踩坑系列】使用long型別處理金額,科學計數法導致金額轉大寫異常型別
- 金額轉換
- 可能是最簡潔明瞭的數字金額中文大寫函式 (轉)函式
- 寫一個格式化金額的方法
- 阿拉伯數字金額轉漢語金額- Swift版本Swift
- js金錢轉換為小額的功能JS
- JS金額正規表示式JS
- Java 金額正規表示式Java
- .NET神器:輕鬆實現數字轉大寫金額的秘籍與示例程式碼
- 金額轉換出現的BUG
- 金額分攤sqlSQL
- 使用正規表示式處理金額
- 轉大寫函式MoneyCn函式
- JavaScript 人民幣金額格式轉換JavaScript
- iOS金額輸入限制iOS
- 1.金額數字轉字元型別字元型別
- lotus 中日期小寫轉大寫的函式及演算法(lotus script) (轉)函式演算法
- EditText輸入金額型別型別
- JavaScript人民幣金額格式轉換詳解JavaScript