Commit 0914bd07 authored by neo's avatar neo

[bugfix] add formuar bb char index to uppercase

parent 13bb847a
......@@ -23,7 +23,7 @@ public class BBParasBo {
} catch (Exception e) {
String columnStr = resolverString(args, ec, 1);
int rtn = 0;
columnStr = columnStr.toLowerCase();
columnStr = columnStr.toUpperCase();
char[] excelCol = columnStr.toCharArray();
for (int i = columnStr.length() - 1; i >= 0; i--) {
if (excelCol[i] >= 'A' && excelCol[i] <= 'Z') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment