อัลกอริทึมเพื่อรับชื่อคอลัมน์ที่เหมือน excel ของตัวเลข


97

ฉันกำลังทำงานกับสคริปต์ที่สร้างเอกสาร Excel และฉันต้องการแปลงตัวเลขให้เทียบเท่าชื่อคอลัมน์ ตัวอย่างเช่น:

1 => A
2 => B
27 => AA
28 => AB
14558 => UMX

ฉันได้เขียนอัลกอริทึมไว้แล้ว แต่ฉันต้องการทราบว่าวิธีที่ง่ายกว่าหรือเร็วกว่าในการทำ:

function numberToColumnName($number){
    $abc = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    $abc_len = strlen($abc);

    $result_len = 1; // how much characters the column's name will have
    $pow = 0;
    while( ( $pow += pow($abc_len, $result_len) ) < $number ){
        $result_len++;
    }

    $result = "";
    $next = false;
    // add each character to the result...
    for($i = 1; $i<=$result_len; $i++){
        $index = ($number % $abc_len) - 1; // calculate the module

        // sometimes the index should be decreased by 1
        if( $next || $next = false ){
            $index--;
        }

        // this is the point that will be calculated in the next iteration
        $number = floor($number / strlen($abc));

        // if the index is negative, convert it to positive
        if( $next = ($index < 0) ) {
            $index = $abc_len + $index;
        }

        $result = $abc[$index].$result; // concatenate the letter
    }
    return $result;
}

คุณรู้วิธีที่ดีกว่านี้หรือไม่? อาจจะมีบางอย่างที่จะทำให้มันง่ายขึ้น? หรือการปรับปรุงประสิทธิภาพ?

แก้ไข

การใช้งานของ ircmaxell ทำได้ดีทีเดียว แต่ฉันจะเพิ่มอันสั้นที่ดีนี้:

function num2alpha($n)
{
    for($r = ""; $n >= 0; $n = intval($n / 26) - 1)
        $r = chr($n%26 + 0x41) . $r;
    return $r;
}

3
ความคิดเห็นแรกในหน้านี้อาจเป็นประโยชน์: php.net/manual/en/function.base-convert.php#96304
Sergey Eremin

ว้าว! นั่นเป็นการใช้งานสั้น ๆ ขอขอบคุณ!
คริสเตียน

คุณได้ดูไลบรารีที่มีอยู่เพื่อสร้างเอกสาร Excel จาก PHP หรือไม่?
Mark Baker

ใช่ ... แน่นอน ฉันใช้ห้องสมุดที่ยอดเยี่ยมของคุณมาร์ค ฉันแค่อยากพัฒนาทักษะในการเขียนอัลกอริทึม ... สิ่งที่ดีเกี่ยวกับมันคือหลังจากที่คุณทำเสร็จแล้วคุณจะพบอัลกอริทึมอื่น ๆ ที่ทำเหมือนกันทุกประการ แต่สั้นกว่า
คริสเตียน

2
อัลกอริทึมแบบสั้นของคุณใช้ 0 -> A แทนที่จะเป็น 1 -> A ในคำขอของคุณซึ่งแตกต่างจากคำขอเล็กน้อย ... ถ้านั่นคือสิ่งที่คุณต้องการให้ดูที่วิธี PHPExcel_Cell :: stringFromColumnIndex () ของ PHPExcel แม้ว่าการใช้งาน num2alpha () ของคุณอาจ เร็วขึ้น ... ฉันจะทำการทดสอบบางอย่างและอาจ "ยืม" ได้ (โดยได้รับอนุญาต)
Mark Baker

คำตอบ:


159

นี่คือฟังก์ชั่นการเรียกซ้ำที่เรียบง่ายที่ดี (จากตัวเลขที่จัดทำดัชนีเป็นศูนย์หมายถึง 0 == A, 1 == B ฯลฯ )

function getNameFromNumber($num) {
    $numeric = $num % 26;
    $letter = chr(65 + $numeric);
    $num2 = intval($num / 26);
    if ($num2 > 0) {
        return getNameFromNumber($num2 - 1) . $letter;
    } else {
        return $letter;
    }
}

และถ้าคุณต้องการให้จัดทำดัชนี (1 == A ฯลฯ ):

function getNameFromNumber($num) {
    $numeric = ($num - 1) % 26;
    $letter = chr(65 + $numeric);
    $num2 = intval(($num - 1) / 26);
    if ($num2 > 0) {
        return getNameFromNumber($num2) . $letter;
    } else {
        return $letter;
    }
}

ทดสอบด้วยตัวเลข 0 ถึง 10000 ...


ขอบคุณ! ช่วยฉันได้ 1/2 ชั่วโมง!
Darryl Hein

ฉันได้แปลสคริปต์ PHP นี้เป็น JS: gist.github.com/terox/161db6259e8ddb56dd77
terox

ฉันสงสัยว่าฟังก์ชัน recusive นั้นดีหรือไม่หากใช้ในการวนซ้ำ? อาจทำให้เกิดปัญหาพื้นที่สแต็กหรือไม่?
Scott Chu

97

การใช้PhpSpreadsheet ( PHPExcel เลิกใช้แล้ว )

// result = 'A'
\PhpOffice\PhpSpreadsheet\Cell\Coordinate::stringFromColumnIndex(1);

หมายเหตุดัชนี 0 ผลลัพธ์ใน 'Z'

https://phpspreadsheet.readthedocs.io/en/develop/


คำตอบที่ถูกต้อง (หากคุณใช้PHPExcel Library) คือ:

// result = 'A'
$columnLetter = PHPExcel_Cell::stringFromColumnIndex(0); // ZERO-based! 

และถอยหลัง:

// result = 1
$colIndex = PHPExcel_Cell::columnIndexFromString('A');

12
stringFromColumnIndex (1) ผลตอบแทนที่ 'B'
ซ่อนเร้น

1
ยอดเยี่ยม! ฉันใช้ PHPExcel นี่คือคำตอบที่เรียบร้อย
Scott Chu

PHPExcel_Cell::stringFromColumnIndex(1)แน่นอนผลตอบแทน'B'โปรดแก้ไขคำตอบของคุณ
MarthyM

13

จัดทำดัชนีสำหรับ 1 -> A, 2 -> B ฯลฯ

function numToExcelAlpha($n) {
    $r = 'A';
    while ($n-- > 1) {
        $r++;
    }
    return $r;
}

จัดทำดัชนีสำหรับ 0 -> A, 1 -> B ฯลฯ

function numToExcelAlpha($n) {
    $r = 'A';
    while ($n-- >= 1) {
        $r++;
    }
    return $r;
}

ใช้ประโยชน์จากข้อเท็จจริงที่ว่า PHP เป็นไปตามแบบแผนของ Perl เมื่อจัดการกับการคำนวณทางคณิตศาสตร์กับตัวแปรอักขระไม่ใช่ของ C โปรดทราบว่าตัวแปรอักขระสามารถเพิ่มได้ แต่ไม่ลดลง


มันเป็นทางออกที่ดี แต่ฉันคิดว่ามันจะหมดเวลาเซิร์ฟเวอร์สำหรับเบอร์ใหญ่เช่น 1234567789
Tahir Raza

5

สิ่งนี้จะทำเพื่อการแปลง (สมมติว่าเป็นเลขคณิตจำนวนเต็ม) แต่ฉันเห็นด้วยกับผู้โพสต์อื่น ๆ เพียงใช้base_convert

function numberToColumnName($number)
{
    $abc = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    $len = strlen($abc);

    $result = "";
    while ($number > 0) {
       $index  = $number % $len;
       $result = $abc[$index] . $result;
       $number = floor($number / $len);
    }

    return $result;
}

นี้จะกลับBสำหรับ$number = 1แทนAตั้งแต่1 % 26มี1
Jalal

5

คำตอบที่ล่าช้า แต่นี่คือสิ่งที่ฉันทำ (สำหรับ 1 == A ที่จัดทำดัชนี):

function num_to_letters($num, $uppercase = true) {
    $letters = '';
    while ($num > 0) {
        $code = ($num % 26 == 0) ? 26 : $num % 26;
        $letters .= chr($code + 64);
        $num = ($num - $code) / 26;
    }
    return ($uppercase) ? strtoupper(strrev($letters)) : strrev($letters);
}

จากนั้นหากคุณต้องการแปลงวิธีอื่น:

function letters_to_num($letters) {
    $num = 0;
    $arr = array_reverse(str_split($letters));

    for ($i = 0; $i < count($arr); $i++) {
        $num += (ord(strtolower($arr[$i])) - 96) * (pow(26,$i));
    }
    return $num;
}

3

ตัวเลขแปลงเป็นตัวอักษรคอลัมน์ Excel:

/**
 * Number convert to Excel column letters
 * 
 * 1 = A
 * 2 = B
 * 3 = C
 * 27 = AA
 * 1234567789 = CYWOQRM
 * 
 * @link https://vector.cool/php-number-convert-to-excel-column-letters-2
 * 
 * @param int  $num       欄數
 * @param bool $uppercase 大小寫
 * @return void
 */
function num_to_letters($n)
{
    $n -= 1;
    for ($r = ""; $n >= 0; $n = intval($n / 26) - 1)
        $r = chr($n % 26 + 0x41) . $r;
    return $r;
}

เช่น:

echo num_to_letters(1);          // A
echo num_to_letters(2);          // B
echo num_to_letters(3);          // C
echo num_to_letters(27);         // AA
echo num_to_letters(1234567789); // CYWOQRM

ตัวอักษรคอลัมน์ Excel แปลงเป็นตัวเลข:

/**
 * Excel column letters convert to Number
 *
 * A = 1
 * B = 2
 * C = 3
 * AA = 27
 * CYWOQRM = 1234567789
 * 
 * @link https://vector.cool/php-number-convert-to-excel-column-letters-2
 * 
 * @param string $letters
 * @return mixed
 */
function letters_to_num($a)
{
    $l = strlen($a);
    $n = 0;
    for ($i = 0; $i < $l; $i++)
        $n = $n * 26 + ord($a[$i]) - 0x40;
    return $n;
}

เช่น:

echo letters_to_num('A');       // 1
echo letters_to_num('B');       // 2
echo letters_to_num('C');       // 3
echo letters_to_num('AA');      // 27
echo letters_to_num('CYWOQRM'); // 1234567789

2
<?php
function numberToColumnName($number){
    $abc = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    $abc_len = strlen($abc);

    $result = "";
    $tmp = $number;

    while($number > $abc_len) {
        $remainder = $number % $abc_len;
        $result = $abc[$remainder-1].$result;
        $number = floor($number / $abc_len);
    }
    return $abc[$number-1].$result;
}

echo numberToColumnName(1)."\n";
echo numberToColumnName(25)."\n";
echo numberToColumnName(26)."\n";
echo numberToColumnName(27)."\n";
echo numberToColumnName(28)."\n";
echo numberToColumnName(14558)."\n";
?>

พยายามได้ดี! มันจะล้มเหลวแม้ว่า ... ลองดู 2049 แล้วคุณจะเห็น: D
Cristian

2

การรวมคำตอบแบบเรียกซ้ำของ ircmaxell ฉันมีคำตอบนี้:

    ฟังก์ชัน getNameFromNumber ($ num, $ index = 0) {
        $ index = abs (ดัชนี $ * 1); // ตรวจสอบให้แน่ใจว่าดัชนีเป็นจำนวนเต็มบวก
        $ numeric = ($ num - $ index)% 26; 
        $ letter = chr (ตัวเลข 65 + $);
        $ num2 = intval (($ num - $ index) / 26);
        ถ้า ($ num2> 0) {
            ส่งคืน getNameFromNumber ($ num2 - 1 + $ index) จดหมาย $;
        } else {
            ส่งคืนอักษร $;
        }
    }

ฉันใช้การจัดทำดัชนีเริ่มต้นเป็นฐาน 0 แต่อาจเป็นจำนวนเต็มบวกเมื่อเล่นกลกับอาร์เรย์ใน PHP


2

ฉันไม่เคยใช้สิ่งนี้ในการผลิตเพราะมันอ่านไม่ออก แต่เพื่อความสนุก ... ทำได้ถึง ZZ เท่านั้น

<?php
    $col = 55;
    print (($n = (int)(($col - 1) / 26)) ? chr($n + 64) : '') . chr((($col - 1) % 26) + 65);
?>

0

สำหรับทุกคนที่กำลังมองหาการใช้งานJavascriptนี่คือคำตอบของ @ ircmaxellในJavascript ..

function getNameFromNumber(num){
    let numeric = num%26;
    let letter = String.fromCharCode(65+numeric);
    let num2 = parseInt(num/26);
    if(num2 > 0) {
      return getNameFromNumber(num2 - 1)+letter;
    } else {
      return letter;
    }
}

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.