阿拉伯数字转中文大写,阿拉伯数字转金额
本帖最后由 66767376 于 2015-4-9 15:35 编辑都是我项目里的代码,安全可靠,求贡献值啊。
ToRMB(12345.12) 返回 壹万贰仟叁佰肆拾伍元壹角贰分
ToRMB(12345) 返回 壹万贰仟叁佰肆拾伍元整
ToUpper(12345.12) 返回一万二千三百四十五点一二
/// <summary>
/// 数字转中文数字
/// </summary>
public abstract class ChinaNum
{
/// <summary>
/// 数字转大写金额(壹、贰、叁)
/// </summary>
/// <param name="value">能转换成数字或者小数的任意类型</param>
/// <returns>返回大写金额</returns>
public static string ToRMB(object value)
{
try
{
string hash = double.Parse(value.ToString()).ToString("#L#E#D#C#K#E#D#C#J#E#D#C#I#E#D#C#H#E#D#C#G#E#D#C#F#E#D#C#.0B0A");
string results = Regex.Replace(hash, @"((?<=-|^)[^1-9]*)|((?'z'0)*((?=)|(?'-z'(?=|$))))|((?'b')(?'z'0)*((?=)|(?'-z'(?=[.]|$))))", "${b}${z}");
hash = Regex.Replace(results, ".", delegate(Match m) { return "负圆空零壹贰叁肆伍陆柒捌玖空空空空空空空分角拾佰仟万億兆京垓秭穰" - '-'].ToString(); });
if (hash.Substring(hash.Length - 1, 1) == "圆") { hash += "整"; }
return hash;
}
catch (Exception)
{
return "零";
}
}
/// <summary>
/// 数字转大写数字(一、二、三)
/// </summary>
/// <param name="value">能转换成数字或者小数的任意类型</param>
/// <returns>返回大写数字</returns>
public static string ToUpper(object value)
{
try
{
string hash = double.Parse(value.ToString()).ToString("#L#E#D#C#K#E#D#C#J#E#D#C#I#E#D#C#H#E#D#C#G#E#D#C#F#E#D#C#.0B0A");
string results = Regex.Replace(hash, @"((?<=-|^)[^1-9]*)|((?'z'0)*((?=)|(?'-z'(?=|$))))|((?'b')(?'z'0)*((?=)|(?'-z'(?=[.]|$))))", "${b}${z}");
hash = Regex.Replace(results, ".", delegate(Match m) { return "负点空〇一二三四五六七八九空空空空空空空分角十百千万亿兆京垓秭穰" - '-'].ToString(); });
if (hash.Substring(hash.Length - 1, 1) == "点")
{
hash=hash.Replace("点", "");
return hash;
}
else
{
hash = hash.Replace("角", "").Replace("分","");
return hash;
}
}
catch (Exception)
{
return "〇";
}
}
}
这是什么了???
页:
[1]