Compare commits
2 Commits
8294196fdb
...
97969cdf83
| Author | SHA1 | Date |
|---|---|---|
|
|
97969cdf83 | |
|
|
57fe1c663e |
|
|
@ -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");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue