中文项目中,有些金额显示,需要使用到中文金额.
可以通过.net c#写的一个方法直接完成该功能
////// 转换人民币大小金额/// /// 金额///返回大写形式 public string PriceToChina(decimal price){string strnum = "零壹贰叁肆伍陆柒捌玖"; //0-9所对应的汉字string strchar = "万仟佰拾亿仟佰拾万仟佰拾元角分"; //数字位所对应的汉字string strtake = ""; //从原num值中取出的值string strswi = ""; //数字的字符串形式string strprice = ""; //人民币大写金额形式int i; //循环变量int j; //num的值乘以100的字符串长度string ch1 = ""; //数字的汉语读法string ch2 = ""; //数字位的汉字读法int nzero = 0; //用来计算连续的零值是几个int temp; //从原num值中取出的值price = Math.Round(Math.Abs(price), 2); //将num取绝对值并四舍五入取2位小数strswi = ((long)(price * 100)).ToString(); //将num乘100并转换成字符串形式j = strswi.Length; //找出最高位if (j > 15) { return "溢出"; }strchar = strchar.Substring(15 - j); //取出对应位数的str2的值。如:200.55,j为5所以str2=佰拾元角分//循环取出每一位需要转换的值for (i = 0; i < j; i++){strtake = strswi.Substring(i, 1); //取出需转换的某一位的值temp = Convert.ToInt32(strtake); //转换为数字if (i != (j - 3) && i != (j - 7) && i != (j - 11) && i != (j - 15)){//当所取位数不为元、万、亿、万亿上的数字时if (strtake == "0"){ch1 = "";ch2 = "";nzero = nzero + 1;}else{if (strtake != "0" && nzero != 0){ch1 = "零" + strnum.Substring(temp * 1, 1);ch2 = strchar.Substring(i, 1);nzero = 0;}else{ch1 = strnum.Substring(temp * 1, 1);ch2 = strchar.Substring(i, 1);nzero = 0;}}}else{//该位是万亿,亿,万,元位等关键位if (strtake != "0" && nzero != 0){ch1 = "零" + strnum.Substring(temp * 1, 1);ch2 = strchar.Substring(i, 1);nzero = 0;}else{if (strtake != "0" && nzero == 0){ch1 = strnum.Substring(temp * 1, 1);ch2 = strchar.Substring(i, 1);nzero = 0;}else{if (strtake == "0" && nzero >= 3){ch1 = "";ch2 = "";nzero = nzero + 1;}else{if (j >= 11){ch1 = "";nzero = nzero + 1;}else{ch1 = "";ch2 = strchar.Substring(i, 1);nzero = nzero + 1;}}}}}if (i == (j - 11) || i == (j - 3)){//如果该位是亿位或元位,则必须写上ch2 = strchar.Substring(i, 1);}strprice = strprice + ch1 + ch2;if (i == j - 1 && strtake == "0"){//最后一位(分)为0时,加上“整”strprice = strprice + '整';}}if (price == 0) { strprice = "零元整"; }return strprice;}