rmb.js
上传用户:yantgcom
上传日期:2013-07-19
资源大小:478k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

PHP

  1. function convertCurrency(currencyDigits) {
  2. // Constants:
  3. var MAXIMUM_NUMBER = 99999999999.99;
  4. // Predefine the radix characters and currency symbols for output:
  5. var CN_ZERO = "零";
  6. var CN_ONE = "壹";
  7. var CN_TWO = "贰";
  8. var CN_THREE = "叁";
  9. var CN_FOUR = "肆";
  10. var CN_FIVE = "伍";
  11. var CN_SIX = "陆";
  12. var CN_SEVEN = "柒";
  13. var CN_EIGHT = "捌";
  14. var CN_NINE = "玖";
  15. var CN_TEN = "拾";
  16. var CN_HUNDRED = "佰";
  17. var CN_THOUSAND = "仟";
  18. var CN_TEN_THOUSAND = "万";
  19. var CN_HUNDRED_MILLION = "亿";
  20. var CN_SYMBOL = "人民币";
  21. var CN_DOLLAR = "元";
  22. var CN_TEN_CENT = "角";
  23. var CN_CENT = "分";
  24. var CN_INTEGER = "整";
  25. // Variables:
  26. var integral; // Represent integral part of digit number.
  27. var decimal; // Represent decimal part of digit number.
  28. var outputCharacters; // The output result.
  29. var parts;
  30. var digits, radices, bigRadices, decimals;
  31. var zeroCount;
  32. var i, p, d;
  33. var quotient, modulus;
  34. // Validate input string:
  35. currencyDigits = currencyDigits.toString();
  36. if (currencyDigits == "") {
  37. alert("Empty input!");
  38. return "";
  39. }
  40. if (currencyDigits.match(/[^,.d]/) != null) {
  41. alert("Invalid characters in the input string!");
  42. return "";
  43. }
  44. if ((currencyDigits).match(/^((d{1,3}(,d{3})*(.((d{3},)*d{1,3}))?)|(d+(.d+)?))$/) == null) {
  45. alert("Illegal format of digit number!");
  46. return "";
  47. }
  48. // Normalize the format of input digits:
  49. currencyDigits = currencyDigits.replace(/,/g, ""); // Remove comma delimiters.
  50. currencyDigits = currencyDigits.replace(/^0+/, ""); // Trim zeros at the beginning.
  51. // Assert the number is not greater than the maximum number.
  52. if (Number(currencyDigits) > MAXIMUM_NUMBER) {
  53. alert("Too large a number to convert!");
  54. return "";
  55. }
  56. // Process the coversion from currency digits to characters:
  57. // Separate integral and decimal parts before processing coversion:
  58. parts = currencyDigits.split(".");
  59. if (parts.length > 1) {
  60. integral = parts[0];
  61. decimal = parts[1];
  62. // Cut down redundant decimal digits that are after the second.
  63. decimal = decimal.substr(0, 2);
  64. }
  65. else {
  66. integral = parts[0];
  67. decimal = "";
  68. }
  69. // Prepare the characters corresponding to the digits:
  70. digits = new Array(CN_ZERO, CN_ONE, CN_TWO, CN_THREE, CN_FOUR, CN_FIVE, CN_SIX, CN_SEVEN, CN_EIGHT, CN_NINE);
  71. radices = new Array("", CN_TEN, CN_HUNDRED, CN_THOUSAND);
  72. bigRadices = new Array("", CN_TEN_THOUSAND, CN_HUNDRED_MILLION);
  73. decimals = new Array(CN_TEN_CENT, CN_CENT);
  74. // Start processing:
  75. outputCharacters = "";
  76. // Process integral part if it is larger than 0:
  77. if (Number(integral) > 0) {
  78. zeroCount = 0;
  79. for (i = 0; i < integral.length; i++) {
  80. p = integral.length - i - 1;
  81. d = integral.substr(i, 1);
  82. quotient = p / 4;
  83. modulus = p % 4;
  84. if (d == "0") {
  85. zeroCount++;
  86. }
  87. else {
  88. if (zeroCount > 0){
  89. outputCharacters += digits[0];
  90. }
  91. zeroCount = 0;
  92. outputCharacters += digits[Number(d)] + radices[modulus];
  93. }
  94. if (modulus == 0 && zeroCount < 4) {
  95. outputCharacters += bigRadices[quotient];
  96. }
  97.  }
  98. outputCharacters += CN_DOLLAR;
  99. }
  100. // Process decimal part if there is:
  101. if (decimal != "") {
  102. for (i = 0; i < decimal.length; i++) {
  103. d = decimal.substr(i, 1);
  104. if (d != "0") {
  105. outputCharacters += digits[Number(d)] + decimals[i];
  106. }
  107. }
  108. }
  109. // Confirm and return the final output string:
  110. if (outputCharacters == "") {
  111. outputCharacters = CN_ZERO + CN_DOLLAR;
  112. }
  113. if (decimal == "") {
  114. outputCharacters += CN_INTEGER;
  115. }
  116. outputCharacters = CN_SYMBOL + outputCharacters;
  117. return outputCharacters;
  118. }