用 JavaScript 函式將印第安貨幣數字轉換成完整單詞(含輔幣)
我們需要編寫一個 JavaScript 函式,該函式接受一個浮點數字,其精度最高可達 2 位。
該函式應將該數字轉換為印度盧比的文字。
例如 −
如果輸入數字是 −
const num = 12500
那麼輸出應該是 −
const output = 'Twelve Thousand Five Hundred';
示例
以下為程式碼 −
const num = 12500;
const wordify = (num) => {
const single = ["Zero", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine"];
const double = ["Ten", "Eleven", "Twelve", "Thirteen", "Fourteen", "Fifteen", "Sixteen", "Seventeen", "Eighteen", "Nineteen"];
const tens = ["", "Ten", "Twenty", "Thirty", "Forty", "Fifty", "Sixty", "Seventy", "Eighty", "Ninety"];
const formatTenth = (digit, prev) => {
return 0 == digit ? "" : " " + (1 == digit ? double[prev] : tens[digit])
};
const formatOther = (digit, next, denom) => {
return (0 != digit && 1 != next ? " " + single[digit] : "") + (0 != next || digit > 0 ? " " + denom : "")
};
let res = "";
let index = 0;
let digit = 0;
let next = 0;
let words = [];
if (num += "", isNaN(parseInt(num))){
res = "";
}
else if (parseInt(num) > 0 && num.length <= 10) {
for (index = num.length - 1; index >= 0; index--) switch (digit = num[index] - 0, next = index > 0 ? num[index - 1] - 0 : 0, num.length - index - 1) {
case 0:
words.push(formatOther(digit, next, ""));
break;
case 1:
words.push(formatTenth(digit, num[index + 1]));
break;
case 2:
words.push(0 != digit ? " " + single[digit] + " Hundred" + (0 != num[index + 1] && 0 != num[index + 2] ? " and" : "") : "");
break;
case 3:
words.push(formatOther(digit, next, "Thousand"));
break;
case 4:
words.push(formatTenth(digit, num[index + 1]));
break;
case 5:
words.push(formatOther(digit, next, "Lakh"));
break;
case 6:
words.push(formatTenth(digit, num[index + 1]));
break;
case 7:
words.push(formatOther(digit, next, "Crore"));
break;
case 8:
words.push(formatTenth(digit, num[index + 1]));
break;
case 9:
words.push(0 != digit ? " " + single[digit] + " Hundred" + (0 != num[index + 1] || 0 != num[index + 2] ? " and" : " Crore") : "")
};
res = words.reverse().join("")
} else res = "";
return res
};
console.log(wordify(num));輸出
控制檯上的輸出如下 −
Twelve Thousand Five Hundred
廣告
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP