您好,欢迎来到伴沃教育。
搜索
您的当前位置:首页中文转换成阿拉伯数字

中文转换成阿拉伯数字

来源:伴沃教育

原文发布时间为: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/71003.html

因篇幅问题不能全部显示,请点此查看更多更全内容

Copyright © 2019- bangwoyixia.com 版权所有 湘ICP备2023022004号-2

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务