mirror of https://github.com/alibaba/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
802 B
29 lines
802 B
7 years ago
|
package com.alibaba.excel.util;
|
||
|
|
||
|
/**
|
||
|
* @author jipengfei
|
||
|
*/
|
||
|
public class PositionUtils {
|
||
|
|
||
|
public static int getRow(String currentCellIndex) {
|
||
|
int row = 0;
|
||
|
if (currentCellIndex != null) {
|
||
|
String rowStr = currentCellIndex.replaceAll("[A-Z]", "").replaceAll("[a-z]", "");
|
||
|
row = Integer.parseInt(rowStr)-1;
|
||
|
}
|
||
|
return row;
|
||
|
}
|
||
|
|
||
|
public static int getCol(String currentCellIndex) {
|
||
|
int col = 0;
|
||
|
if (currentCellIndex != null) {
|
||
|
|
||
|
char[] currentIndex = currentCellIndex.replaceAll("[0-9]", "").toCharArray();
|
||
|
for (int i = 0; i < currentIndex.length; i++) {
|
||
|
col += (currentIndex[i] - '@') * Math.pow(26, (currentIndex.length - i - 1));
|
||
|
}
|
||
|
}
|
||
|
return col-1;
|
||
|
}
|
||
|
}
|