Add space after every 4th character

前端 未结 8 1880
我寻月下人不归
我寻月下人不归 2021-02-11 12:19

I want to add a space to some output after every 4th character until the end of the string. I tried:

$str = $rows[\'value\'];


        
8条回答
  •  再見小時候
    2021-02-11 12:47

    Here is an example of string with length is not a multiple of 4 (or 5 in my case).

    function space($str, $step, $reverse = false) {
        
        if ($reverse)
            return strrev(chunk_split(strrev($str), $step, ' '));
        
        return chunk_split($str, $step, ' ');
    }
    

    Use :

    echo space("0000000152748541695882", 5);
    

    result: 00000 00152 74854 16958 82

    Reverse mode use ("BVR code" for swiss billing) :

    echo space("1400360152748541695882", 5, true);
    

    result: 14 00360 15274 85416 95882

    EDIT 2021-02-09

    Also useful for EAN13 barcode formatting :

    space("7640187670868", 6, true);
    

    result : 7 640187 670868

    short syntax version :

    function space($s=false,$t=0,$r=false){return(!$s)?false:(($r)?trim(strrev(chunk_split(strrev($s),$t,' '))):trim(chunk_split($s,$t,' ')));}
    

    Hope it could help some of you.

提交回复
热议问题