forked from fanruan/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.
28 lines
802 B
28 lines
802 B
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; |
|
} |
|
}
|
|
|