Skip to content

Instantly share code, notes, and snippets.

@Timothy-Liuxf
Forked from x5lcfd/ConvertToChinese.cs
Last active May 3, 2022 20:30
Show Gist options
  • Save Timothy-Liuxf/5bb21b3937c09caf8b1717ad882b0c3e to your computer and use it in GitHub Desktop.
Save Timothy-Liuxf/5bb21b3937c09caf8b1717ad882b0c3e to your computer and use it in GitHub Desktop.
MoneyInArabicNumeralsToChinese
public static string ConvertToChinese(decimal number)
{
var s = number.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");
var d = Regex.Replace(s, @"((?<=-|^)[^1-9]*)|((?'z'0)[0A-E]*((?=[1-9])|(?'-z'(?=[F-L\.]|$))))|((?'b'[F-L])(?'z'0)[0A-L]*((?=[1-9])|(?'-z'(?=[\.]|$))))", "${b}${z}");
var r = Regex.Replace(d, ".", m => "负元空零壹贰叁肆伍陆柒捌玖空空空空空空空分角拾佰仟万亿兆京垓秭穰"[m.Value[0] - '-'].ToString());
return r;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment