• 将阿拉伯数字转换为中文书面数字


    前几天有人在群里写这个,好像挺纠结的样子,就顺手帮他写了一个。

    主要思路是中文的数字读法是四位四位分的,高位数字的读法就是xxxx亿xxxx万xxxx。

    void Start () {
    //测试数据
    Debug.Log (full_toword(987654321));
    Debug.Log (full_toword(907654321));
    Debug.Log (full_toword(9000900654321));
    Debug.Log (full_toword(9000900000000));
    }
    
    
    string full_toword(long i){
    long[] a=new long[4];//按照万亿兆拆分输入数字
    a [0] = i/1000000000000;
    a [1] = i / 100000000 % 10000;
    a [2] = i / 10000 % 10000;
    a [3] = i % 10000;
    string[] s = new string[4];//每4位数字对应的字符串
    s [0] = thousand_toword ((int)a [0],"");
    s [1] = thousand_toword ((int)a [1],"亿");
    s [2] = thousand_toword ((int)a [2],"");
    s [3] = thousand_toword ((int)a [3],"");
    for (int j = 0; j < 4; j++) {
    if (0 == a [j])
    s [j] = "";//除去高位零
    else
    break;
    }
    for (int j = 3; j >= 0; j--) {
    if (0 == a [j])
    s [j] = "";//除去低位零
    else
    break;
    }
    int max;//获取数字中最大的单位
    for (max = 0; max < 4; max++) {
    if (a [max] != 0)
    break;
    }
    for (int j = max + 1; j < 4; j++) {
    if ((0 != a [j]) && (a [j] / 1000 == 0))
    s [j] = "" + s [j];//如果该四位数字不是零,并且不是最高位,那么在前面加一个零
    }
    string _out = s[0]+s[1]+s[2]+s[3];
    return _out;
    }
    
    ///输出四位数字的读法
    string thousand_toword(int i,string ss){
    int[] a=new int[4];
    a [0] = i / 1000;
    a [1] = i / 100 % 10;
    a [2] = i / 10 % 10;
    a [3] = i % 10;
    string[] s = new string[4];
    s [0] = toword (a [0],"");
    s [1] = toword (a [1],"");
    s [2] = toword (a [2],"");
    s [3] = toword (a [3],"");
    for (int j = 0; j < 4; j++) {
    if (0 == a [j])
    s [j] = "";//除去高位零
    else
    break;
    }
    for (int j = 3; j >= 0; j--) {
    if (0 == a [j])
    s [j] = "";//除去低位零
    else
    break;
    }
    for (int j = 0; j < 3; j++) {
    if (("" == s [j]) && ("" == s [j+1]))
    s [j] = "";//将连续的零合并为一个,比如1001这样的数字
    }
    string _out = s[0]+s[1]+s[2]+s[3]+ss;
    return _out;
    }
    
    //将对应的一位阿拉伯数字转换为汉字
    string toword(int i,string s){
    switch (i) {
    case 0:
    return("");
    case 1:
    return(""+s);
    case 2:
    return(""+s);
    case 3:
    return(""+s);
    case 4:
    return(""+s);
    case 5:
    return(""+s);
    case 6:
    return(""+s);
    case 7:
    return(""+s);
    case 8:
    return(""+s);
    case 9:
    return(""+s);
    default: 
    return("");
    
    }
    }
    }
    附一张输出结果,没问题
    将阿拉伯数字转换为中文书面数字
  • 相关阅读:
    Laravel 手动分页实现
    大话Web-Audio-Api
    关于audio标签播放跨域的问题
    jquery的命名空间
    正则表达式的应用
    七天学会ASP.NET MVC (六)——线程问题、异常处理、自定义URL 【转】
    七天学会ASP.NET MVC (五)——Layout页面使用和用户角色管理 【转】
    七天学会ASP.NET MVC (四)——用户授权认证问题 【转】
    七天学会ASP.NET MVC (三)——ASP.Net MVC 数据处理 【转】
    七天学会ASP.NET MVC (二)——ASP.NET MVC 数据传递 【转】
  • 原文地址:https://www.cnblogs.com/Swallowtail/p/6181414.html
Copyright © 2020-2023  润新知