forked from laochiangx/Common.Utility
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jimmey-Jiang
committed
Jan 5, 2018
1 parent
ff08de3
commit bfe1fb0
Showing
13 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
| ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace Common.Utilities | ||
{ | ||
public static class DecimalUtility | ||
{ | ||
public static Decimal? ParseToDecimalValue(object decimalObj) | ||
{ | ||
if (decimalObj == null) return null; | ||
Decimal decValue; | ||
if (!Decimal.TryParse(decimalObj.ToString(), out decValue)) return null; | ||
return decValue; | ||
} | ||
|
||
/// <summary> | ||
/// 转中文大写数字 | ||
/// </summary> | ||
/// <param name="value"></param> | ||
/// <returns></returns> | ||
public static string ConvertNumToZHUpperCase(decimal value) | ||
{ | ||
string[] numList = { "零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖" }; | ||
string[] unitList = { "分", "角", "元", "拾", "佰", "仟", "万", "拾", "佰", "仟", "亿", "拾", "佰", "仟" }; | ||
|
||
decimal money = value; | ||
if (money == 0) | ||
{ | ||
return "零元整"; | ||
} | ||
|
||
StringBuilder strMoney = new StringBuilder(); | ||
//只取小数后2位 | ||
|
||
|
||
|
||
string strNum = decimal.Truncate(money * 100).ToString(); | ||
|
||
int len = strNum.Length; | ||
int zero = 0; | ||
for (int i = 0; i < len; i++) | ||
{ | ||
int num = int.Parse(strNum.Substring(i, 1)); | ||
int unitNum = len - i - 1; | ||
|
||
if (num == 0) | ||
{ | ||
zero++; | ||
if (unitNum == 2 || unitNum == 6 || unitNum == 10) | ||
{ | ||
if (unitNum == 2 || zero < 4) | ||
strMoney.Append(unitList[unitNum]); | ||
zero = 0; | ||
} | ||
} | ||
else | ||
{ | ||
|
||
if (zero > 0) | ||
{ | ||
strMoney.Append(numList[0]); | ||
zero = 0; | ||
} | ||
strMoney.Append(numList[num]); | ||
strMoney.Append(unitList[unitNum]); | ||
} | ||
|
||
} | ||
if (zero > 0) | ||
strMoney.Append("整"); | ||
|
||
return strMoney.ToString(); | ||
} | ||
|
||
/// <summary> | ||
/// 截取指定位数 | ||
/// </summary> | ||
/// <param name="d"></param> | ||
/// <param name="s"></param> | ||
/// <returns></returns> | ||
public static decimal ToFixed(decimal d, int s) | ||
{ | ||
decimal sp = Convert.ToDecimal(Math.Pow(10, s)); | ||
return Math.Truncate(d) + Math.Floor((d - Math.Truncate(d)) * sp) / sp; | ||
} | ||
|
||
/// <summary> | ||
/// 截取指定位数 | ||
/// </summary> | ||
/// <param name="d"></param> | ||
/// <param name="s"></param> | ||
/// <returns></returns> | ||
public static double ToFixed(double d, int s) | ||
{ | ||
double sp = Math.Pow(10, s); | ||
return Math.Truncate(d) + Math.Floor((d - Math.Truncate(d)) * sp) / sp; | ||
} | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions
1
Utility基础类大全/obj/Debug/Common.Utility.csproj.CoreCompileInputs.cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
4601c699269147baa49c7900835656b5a1c40a49 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
Utility基础类大全/obj/Debug/Common.Utility.csprojResolveAssemblyReference.cache
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Utility基础类大全/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Binary file not shown.
Binary file not shown.
Binary file not shown.