如何将整数转换为A1表示法?

时间:2019-12-18 23:49:25

标签: java google-sheets-api notation

我正在尝试创建一种方法,该方法将在给定列之后找到下一个列。例如:

input: A
output: B

一开始似乎很简单。我只是要使用以下方法:

public static char nextLetter(char c) {
    c++;
    return c;
}

当您经过Z列时会出现问题。在Google表格中,Z列之后的列名称是两个字母,然后是三个字母,依此类推。因此,在列Z之后是AA,在{{之后1}}出现在AZ之后,BA出现在ZZ之后,等等。我的下一个想法是,首先要根据索引确定列的位置。因此,AAA列将为27,AA 52列,等等。

查找列的索引不是我现在面临的问题。我需要弄清楚如何将该索引转换为相应的列名。我打算尝试以下方法,但我意识到它也仅限于A-Z:

BA

在这一点上,我认为需要一种递归方法。但是,我不知道要进行设置。据我所知:

public static char getLetter(int index) {
    return (char) (index + 64);
}

有人知道将整数(索引)转换为相应列名称的好方法吗?

编辑

我刚刚在Github上找到了一个非常有用的资源,该资源处理十六进制:https://gist.github.com/pinguet62/9817978

5 个答案:

答案 0 :(得分:3)

我创建了一个示例:

class Test {
    static char[] alphabet = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I',
                               'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
                               'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' };

    private static String indexToColumnName(int i) {
        if (i >= alphabet.length) {
            return indexToColumnName((int)Math.floor(i / alphabet.length) - 1)
              + indexToColumnName(i % alphabet.length);
        }
        return Character.toString(alphabet[i]);
    }

    public static void main(String args[]) {
        for (int i = 0; i <= 800; ++i) {
            System.out.println(i + ": " + indexToColumnName(i));
        }
    }
}

上面的内容将类似于:

0: A
1: B
2: C
3: D
...
24: Y
25: Z
26: AA
27: AB
...
700: ZY
701: ZZ
702: AAA
703: AAB
...

在这种情况下,它是零索引,但是您可以轻松地更改自己。

答案 1 :(得分:1)

尝试

private static String getNotation(int size) {
        String result = "";
        int q = 0; // How many characters does the notation consist of?
        int f1 = 0;
        int f2 = 0;
        while (f2 < size) {
            q += 1;
            f1 = f2;
            f2 += Math.pow(26, q);
        }

        size -= f1;
        size--;
        for (int i = 0; i < q; i++) {
            result = (char) (size % 26 + 65) + result;
            size /= 26;
        }

        return result;
    }

答案 2 :(得分:1)

我想像hexa(基数16)一样,您可以使用基数26。可以尝试使用基数10到基数X转换器。 主要问题是在这种情况下,在“数字”“ Z”之后您拥有数字“ AA”,就像在数字9之后您将拥有00。或者在十六进制中如果在F之后您将拥有00而不是10。

我一个人尝试了很多,但终于找到了这个话题: here

在Java中:

private static String getNotation(int size) {
    str = "";
    int r;
    while(size >0) {
        r = (size-1) % 26;
        str = getLetter(r+1)+ str;
        size = (size-r) /26 ;
    }
    return str;
}

解决方案似乎只是模数附近的-1,如果将其删除,您将A视为0,因此Z之后将出现BA,如以十进制为基数的26转换器。

答案 3 :(得分:1)

您可以执行以下操作:

public class Main {
    public static void main(String[] args) {
        System.out.println(getNextColumn("A"));
        System.out.println(getNextColumn("Z"));
        System.out.println(getNextColumn("AA"));
        System.out.println(getNextColumn("AZ"));
        System.out.println(getNextColumn("ZA"));
        System.out.println(getNextColumn("ZZ"));
        System.out.println(getNextColumn("AAA"));
        System.out.println(getNextColumn("ABA"));
        System.out.println(getNextColumn("ABZ"));
        System.out.println(getNextColumn("ZZZ"));
    }

    static String getNextColumn(String column) {
        column = column.toUpperCase();
        StringBuilder sb = new StringBuilder();
        boolean allZ = true;
        for (int i = 0; i < column.length(); i++) {
            if (!(column.charAt(i) == 'Z')) {
                allZ = false;
                break;
            }
        }
        if (allZ) {
            for (int i = 0; i <= column.length(); i++) {
                sb.append('A');
            }
            return sb.toString();
        }
        boolean charAfterZ = false;
        int indexOfZ = 0;
        for (int i = 0; i < column.length() - 1; i++) {
            if (column.charAt(i) == 'Z') {
                charAfterZ = true;
                indexOfZ = i;
                break;
            }
        }
        if (charAfterZ) {
            sb.append(column.substring(0, indexOfZ + 1) + (char) (column.charAt(indexOfZ + 1) + 1));
            if (column.length() > indexOfZ + 2) {
                sb.append(column.substring(indexOfZ + 1));
            }
            return sb.toString();
        }

        char lastChar = column.charAt(column.length() - 1);

        if (lastChar == 'Z') {
            sb.append(column.substring(0, column.length() - 2) + (char) (column.charAt(column.length() - 2) + 1) + ""
                    + 'A');
        } else {
            if (column.length() > 1) {
                sb.append(column.substring(0, column.length() - 1) + ""
                        + (char) (column.charAt(column.length() - 1) + 1));
            } else {
                sb.append((char) (column.charAt(column.length() - 1) + 1));
            }
        }
        return sb.toString();
    }
}

输出:

B
AA
AB
BA
ZB
AAA
AAB
ABB
ACA
AAAA

答案 4 :(得分:1)

昨天我需要在 Go 中将整数转换为 A1 表示法,所以我做了 this 递归函数(移植到 java 以匹配问题标签):

  public static String indexToA1Notation(int column) {
    if (column <= 'Z' - 'A') {
      return Character.toString('A' + column);       
    }
    return String.format("%s%s", indexToA1Notation((column/26)-1), Character.toString('A'+column%26));
  }