|
|
@@ -1602,7 +1602,7 @@ public class ExcelTabServiceImpl extends BaseServiceImpl<ExcelTabMapper, ExcelTa
|
|
|
String[] split = key.split("_");
|
|
|
String value = dataMap2.get(key);
|
|
|
//去掉占位符坐标数据
|
|
|
- List<String> collect = Arrays.stream(value.split("☆")).filter(f -> !f.contains("/!@#\\$%\\^")).collect(Collectors.toList());
|
|
|
+ List<String> collect = Arrays.stream(value.split("☆")).filter(f -> !f.contains("/!@#$%^")).collect(Collectors.toList());
|
|
|
value = StringUtils.join(collect,"☆");
|
|
|
|
|
|
if (split.length > 1 && Integer.parseInt(split[1]) > 80) {
|