c# 通過數值計算小數位數


/// <summary>
/// 獲取小數位數
/// </summary>
/// <param name="decimalV">小數</param>
/// <returns></returns>
public static int GetNumberOfDecimalPlaces(double decimalV)
{
    string[] temp = decimalV.ToString().Split('.');
    if (temp.Length == 2 && temp[1].Length > 0)
    {
        int index = temp[1].Length - 1;
        while (temp[1][index] == '0' && index-- > 0) ;
        return index + 1;
    }
    return 0;
}

/// <summary>
/// 獲取小數位數
/// </summary>
/// <param name="decimalV">小數</param>
/// <returns></returns>
public static int GetNumberOfDecimalPlaces(decimal decimalV)
{
    string[] temp = decimalV.ToString().Split('.');
    if (temp.Length == 2 && temp[1].Length > 0)
    {
        int index = temp[1].Length - 1;
        while (temp[1][index] == '0' && index-- > 0) ;
        return index + 1;
    }
    return 0;
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM