#region 设置小数点
private void gridView4_CustomColumnDisplayText(object sender, DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventArgs e)
{
if (e.DisplayText != "")
{
//利用正则表达式判断当前列值不包含中文
//System.Text.RegularExpressions.Match result=System.Text.RegularExpressions.Regex.Match(e.DisplayText, "^[^0-9^.]+");
//^:代表从字符串开头进行匹配
//.*[^0]:代表匹配当前字符串中不为0的字符(.*为贪婪匹配模式,会尽可能多的在字符串中匹配不为0的字符
//如果字符如0.0234000;匹配结果为0.0234)
System.Text.RegularExpressions.Match result1 = System.Text.RegularExpressions.Regex.Match(e.DisplayText, "^.*[^0]");
if (result1.Value.EndsWith("."))
e.DisplayText = result1.Value + "0";
else
e.DisplayText = result1.Value;
}
}
#endregion
點(diǎn)擊查看更多內(nèi)容
為 TA 點(diǎn)贊
評(píng)論
評(píng)論
共同學(xué)習(xí),寫下你的評(píng)論
評(píng)論加載中...
作者其他優(yōu)質(zhì)文章
正在加載中
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦