优化Excel匹配数值型.0结尾

This commit is contained in:
RuoYi 2025-04-28 11:20:48 +08:00
parent 7b6fdb3a89
commit 57fe1c663e

View File

@ -390,7 +390,7 @@ public class ExcelUtil<T>
if (String.class == fieldType)
{
String s = Convert.toStr(val);
if (StringUtils.endsWith(s, ".0"))
if (s.matches("^\\d+\\.0$"))
{
val = StringUtils.substringBefore(s, ".0");
}