数字到字母 [英] numeric to alphabets

查看:46
本文介绍了数字到字母的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在int a中有一些数字,而我在加载以整数形式的nuber时的一个文本框应显示为类似字符.
EG:
int a = 89;
在文本框中加载时应该像八十九;




请帮助解决此问题,并在此先感谢

i ve some numbers in int a, and i hv one text box on loading the nuber in the integer should display like characters.
EG:
int a=89;
while loading in text box it should come like eighty nine;




pls help in solving this and thanks in advance

推荐答案

首先,我打开了两个名为txtNum和txtword的文本框,然后单击了一个按钮.
单击"Of"按钮后,您在txtNum中输入的数字将转换为单词.

下面是aspx页面:

First of all I took two text boxes named txtNum and txtword and then a button.
On click Of button the number which you entered in txtNum will be converted into words.

Below is the aspx page:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="NumPage.aspx.cs" Inherits="Number_Word.NumPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        Enter the number :
        <asp:TextBox ID="txtNum" runat="server" Width="199px"></asp:TextBox>
        <br />
        <br />
        Words:&nbsp;&nbsp;
        <asp:TextBox ID="txtWord" runat="server" TextMode="MultiLine" Width="250px"></asp:TextBox>
        <br />
        <br />
        <asp:Button ID="btnWords" runat="server" onclick="btnWords_Click" Text="Click to get in words" />
    </div>
    </form>
</body>
</html>



.cs文件



.cs file

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace Number_Word
{
    public partial class NumPage : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void btnWords_Click(object sender, EventArgs e)
        {
            //int iNum;
            //retWord(Int32.Parse(txtNum.Text));
            txtWord.Text = retWord(Int32.Parse(txtNum.Text));
        }
        public string retWord(int number)
        {

            if (number == 0) return "Zero";

            if (number == -2147483648) return "Minus Two Hundred and Fourteen Crore Seventy Four Lakh Eighty Three Thousand Six Hundred and Forty Eight";

            int[] num = new int[4];

            int first = 0;

            int u, h, t;

            System.Text.StringBuilder sb = new System.Text.StringBuilder();

            if (number < 0)
            {

                sb.Append("Minus");

                number = -number;

            }

            string[] words0 = { "", "One", "Two ", "Three ", "Four ", "Five ", "Six ", "Seven ", "Eight ", "Nine " };

            string[] words = { "Ten ", "Eleven ", "Twelve ", "Thirteen ", "Fourteen ", "Fifteen ", "Sixteen ", "Seventeen ", "Eighteen ", "Nineteen " };

            string[] words2 = { "Twenty ", "Thirty ", "Forty ", "Fifty ", "Sixty ", "Seventy ", "Eighty ", "Ninety " };

            string[] words3 = { "Thousand ", "Lakh ", "Crore " };

            num[0] = number % 1000; // units

            num[1] = number / 1000;

            num[2] = number / 100000;

            num[1] = num[1] - 100 * num[2]; // thousands

            num[3] = number / 10000000; // crores

            num[2] = num[2] - 100 * num[3]; // lakhs



            for (int i = 3; i > 0; i--)
            {

                if (num[i] != 0)
                {

                    first = i;

                    break;

                }

            }

            for (int i = first; i >= 0; i--)
            {

                if (num[i] == 0) continue;

                u = num[i] % 10; // ones

                t = num[i] / 10;

                h = num[i] / 100; // hundreds

                t = t - 10 * h; // tens

                if (h > 0) sb.Append(words0[h] + "Hundred ");

                if (u > 0 || t > 0)
                {

                    if (h > 0 || i == 0) sb.Append("and ");

                    if (t == 0)

                        sb.Append(words0[u]);

                    else if (t == 1)

                        sb.Append(words[u]);

                    else

                        sb.Append(words2[t - 2] + words0[u]);

                }

                if (i != 0) sb.Append(words3[i - 1]);

            }

            return sb.ToString().TrimEnd();

        }
    }
}







希望对您有帮助.

谢谢
Praveen N







Hope this will help you.

Thanks
Praveen N


^ ]


这篇关于数字到字母的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆