public class ExcelUtils
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static java.util.regex.Pattern |
PATTERN_CELL_TOKENS |
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String[] |
extractExcelCellTokens(java.lang.String cellValue)
Splits cell value into tokens
|
public static java.lang.String[] extractExcelCellTokens(java.lang.String cellValue)
input: "a:b:c" output: {"a","b","c"}
input: "a:b:[c:d]:f" output: {"a","b","c:d","f}
cellValue - cell value to split.Copyright © 2018 SAP SE. All Rights Reserved.