|
@@ -213,7 +213,7 @@ public class ExcelUtils {
|
|
|
*/
|
|
|
public static String convertByExp(String propertyValue, String converterExp, String separator) {
|
|
|
StringBuilder propertyString = new StringBuilder();
|
|
|
- String[] convertSource = converterExp.split(StrUtils.SEPARATOR);
|
|
|
+ String[] convertSource = converterExp.split(StrUtils.COMMA);
|
|
|
for (String item : convertSource) {
|
|
|
String[] itemArray = item.split("=");
|
|
|
if (StrUtils.containsAny(propertyValue, separator)) {
|
|
@@ -242,7 +242,7 @@ public class ExcelUtils {
|
|
|
*/
|
|
|
public static String reverseByExp(String propertyValue, String converterExp, String separator) {
|
|
|
StringBuilder propertyString = new StringBuilder();
|
|
|
- String[] convertSource = converterExp.split(StrUtils.SEPARATOR);
|
|
|
+ String[] convertSource = converterExp.split(StrUtils.COMMA);
|
|
|
for (String item : convertSource) {
|
|
|
String[] itemArray = item.split("=");
|
|
|
if (StrUtils.containsAny(propertyValue, separator)) {
|