人民币大小写金额

  public string CmycurD(decimal num)
    {

        string str1 = "零壹贰叁肆伍陆柒捌玖";    //0-9所对应的汉字
        string str2 = "万仟佰拾亿仟佰拾万仟佰拾元角分"; //数字位所对应的汉字
        string str3 = "";  //从原num值中取出的值
        string str4 = "";  //数字的字符串形式
        string str5 = "";  //人民币大写金额形式
        int i;  //循环变量
        int j;  //num的值乘以100的字符串长度
        string ch1 = "";  //数字的汉语读法
        string ch2 = "";  //数字位的汉字读法
        int nzero = 0;  //用来计算连续的零值是几个
        int temp;    //从原num值中取出的值 

        num = Math.Round(Math.Abs(num), 2);  //将num取绝对值并四舍五入取2位小数
        str4 = ((long)(num * 100)).ToString();    //将num乘100并转换成字符串形式
        j = str4.Length;  //找出最高位
        if (j > 15) { return "溢出"; }
        str2 = str2.Substring(15 - j); //取出对应位数的str2的值。如:200.55,j为5所以str2=佰拾元角分 

        //循环取出每一位需要转换的值
        for (i = 0; i < j; i++)
        {
            str3 = str4.Substring(i, 1);    //取出需转换的某一位的值
            Int32.TryParse(str3, out temp);
            if (i != (j - 3) && i != (j - 7) && i != (j - 11) && i != (j - 15))
            {
                //当所取位数不为元、万、亿、万亿上的数字时
                if (str3 == "0")
                {
                    ch1 = "";
                    ch2 = "";
                    nzero = nzero + 1;
                }
                else
                {
                    if (str3 != "0" && nzero != 0)
                    {
                        ch1 = "零" + str1.Substring(temp * 1, 1);
                        ch2 = str2.Substring(i, 1);
                        nzero = 0;
                    }
                    else
                    {
                        ch1 = str1.Substring(temp * 1, 1);
                        ch2 = str2.Substring(i, 1);
                        nzero = 0;
                    }
                }
            }
            else
            {
                //该位是万亿,亿,万,元位等关键位
                if (str3 != "0" && nzero != 0)
                {
                    ch1 = "零" + str1.Substring(temp * 1, 1);
                    ch2 = str2.Substring(i, 1);
                    nzero = 0;
                }
                else
                {
                    if (str3 != "0" && nzero == 0)
                    {
                        ch1 = str1.Substring(temp * 1, 1);
                        ch2 = str2.Substring(i, 1);
                        nzero = 0;
                    }
                    else
                    {
                        if (str3 == "0" && nzero >= 3)
                        {
                            ch1 = "";
                            ch2 = "";
                            nzero = nzero + 1;
                        }
                        else
                        {
                            if (j >= 11)
                            {
                                ch1 = "";
                                nzero = nzero + 1;
                            }
                            else
                            {
                                ch1 = "";
                                ch2 = str2.Substring(i, 1);
                                nzero = nzero + 1;
                            }
                        }
                    }
                }
            }
            if (i == (j - 11) || i == (j - 3))
            {
                //如果该位是亿位或元位,则必须写上
                ch2 = str2.Substring(i, 1);
            }
            str5 = str5 + ch1 + ch2;

            if (i == j - 1 && str3 == "0")
            {
                //最后一位(分)为0时,加上“整”
                str5 = str5 + ‘整‘;
            }
        }
        if (num == 0)
        {
            str5 = "零元整";
        }
        return str5;
    }

人民币大小写金额

时间: 2024-08-28 18:25:57

人民币大小写金额的相关文章

人民币 小写金额转换为大写金额

### 人民币 小写金额转换为大写金额 标签(空格分隔): 人民币 小写金额转换为大写金额 --- jsp:```div class="form-group"><label class="col-sm-4 control-label">合计人民币金额(小写):</label><div class="col-sm-7"><input id="totalRmbLower" type=

转换人民币大小金额

C#控制台测试 class Program { static void Main(string[] args) { decimal rmb = Convert.ToDecimal(Console.ReadLine()); Rmb.CmycurD(rmb); Console.ReadLine(); } } /// <summary> /// Rmb 的摘要说明. /// </summary> public static class Rmb { /// <summary>

ASP.NET转换人民币大小金额

public class DecimalToRMB    {        /// <summary>         /// 转换人民币大小金额         /// </summary>         /// <param name="num">金额</param>         /// <returns>返回大写形式</returns>         public static string Cmyc

RMB转换人民币大小金额

MXS&Vincene  ─╄OvЁ  &0000015 ─╄OvЁ  MXS&Vincene MXS&Vincene  ─╄OvЁ:今天很残酷,明天更残酷,后天很美好,但是绝大部分人是死在明天晚上,只有那些真正的英雄才能见到后天的太阳. MXS&Vincene  ─╄OvЁ:We're here to put a dent in the universe. Otherwise why else even be here? 正文>>>>>

人民币大小写转化

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Data;using System.Text;using System.Security.Cryptography; namespace VankeWeb.BaseClass{ public class Co

人民币小写金额转大写金额

#region 人民币小写金额转大写金额 /// <summary> /// 小写金额转大写金额 /// </summary> /// <param name="Money">接收需要转换的小写金额</param> /// <returns>返回大写金额</returns> public static string ConvertMoney(this decimal Money) { //金额转换程序 string

人民币数字金额转大写金额

public class t { public static String Trans2RMB(String money) { int index = money.indexOf("."); if (index < 0) {// 没有角分 money = money + ".00"; index = money.indexOf("."); } if (money.substring(index, money.length()).length

将金额人民币转化为大写

/// <summary> /// 转换人民币大小金额 /// </summary> /// <param name="num">金额</param> /// <returns>返回大写形式</returns> public static string CmycurD(decimal num) { string str1 = "零壹贰叁肆伍陆柒捌玖"; //0-9所对应的汉字 string st

C# 把小写人民币转换为大写

/// <summary> /// 转换人民币大小金额 /// </summary> /// <param name="num">金额</param> /// <returns>返回大写形式</returns> public static string CmycurD(decimal num) { string str1 = "零壹贰叁肆伍陆柒捌玖"; //0-9所对应的汉字 string st