#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
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦