1

我刚刚开始使用 PHPExcel-1.7.7 ..

我在从列名获取列索引时遇到问题,例如

A -> 1, H-> 8, L-> 12

像那样..

提前致谢..

4

2 回答 2

6

所以有什么问题?

$column = 'IV';
$columnIndex = PHPExcel_Cell::columnIndexFromString($column);

当 1.7.9 版是最新的生产版本时,您为什么要使用 1.7.7 版?

于 2013-06-03T07:58:51.693 回答
0
public static function lettersToInt(string $string): int {
    $letters = str_split($string);
    $lastLetter = array_pop($letters); // Last letter is defining number between 0-26
    $index = 0;
    $alphabet = range('A', 'Z');
    foreach($letters as $letter) {
        // Letters before last letter are defining how many times to add 26.
        $multiplier = array_search($letter, $alphabet) + 1;
        $index = $index + 26 * $multiplier;
    }
    $index = $index + array_search($lastLetter, $alphabet);
    return $index;
}

我已经测试了它的两个字母列名。我的大脑拒绝解决三个字母(也许并不复杂,但项目预算中没有更多时间了 :))

于 2020-05-07T05:02:36.960 回答