中文转换成阿拉伯数字

原文发布时间为:2010-07-15 —— 来源于本人的百度文章 [由搬家工具导入]

#region 中文转换成阿拉伯数字
/// <summary>
/// 中文转换成阿拉伯数字
/// </summary>
/// <param name="strChinese">中文数字,如 一百零八</param>
/// <returns>阿拉伯数字,如 108</returns>
private static int ChineseToArab(string strChinese)
{
string e = "零一二三四五六七八九";
string[] ew = new string[] { "十", "百", "千" };
string[] ej = new string[] { "万", "亿" };

int a = 0;
if (strChinese.IndexOf(ew[0]) == 0)
a = 10;
strChinese = Regex.Replace(strChinese, e[0].ToString(), "");

if (Regex.IsMatch(strChinese, "([" + e + "])$"))
{
a += e.IndexOf(Regex.Match(strChinese, "([" + e + "])$").Value[0]);
}

if (Regex.IsMatch(strChinese, "([" + e + "])" + ew[0]))
{
a += e.IndexOf(Regex.Match(strChinese, "([" + e + "])" + ew[0]).Value[0]) * 10;
}

if (Regex.IsMatch(strChinese, "([" + e + "])" + ew[1]))
{
a += e.IndexOf(Regex.Match(strChinese, "([" + e + "])" + ew[1]).Value[0]) * 100;
}

if (Regex.IsMatch(strChinese, "([" + e + "])" + ew[2]))
{
a += e.IndexOf(Regex.Match(strChinese, "([" + e + "])" + ew[2]).Value[0]) * 1000;
}
return a;
}
#endregion

转载于:https://www.cnblogs.com/handboy/p/7164003.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值