/home/kueuepay/public_html/vendor/maatwebsite/excel/src/Helpers/CellHelper.php
<?php

namespace Maatwebsite\Excel\Helpers;

class CellHelper
{
    /**
     * @param  string  $coordinate
     * @return string
     */
    public static function getColumnFromCoordinate(string $coordinate): string
    {
        return preg_replace('/[0-9]/', '', $coordinate);
    }
}
Examples

Examples

For code examples and implementation guides, please refer to the “Examples” section on our developer portal. Go to GitHub Repository