How to remove all leading zeroes in a string

前端 未结 10 1206
感情败类
感情败类 2020-12-02 07:16

If I have a string

00020300504
00000234892839
000239074

how can I get rid of the leading zeroes so that I will only have this



        
10条回答
  •  难免孤独
    2020-12-02 08:07

    Im Fixed with this way.

    its very simple. only pass a string its remove zero start of string.

    function removeZeroString($str='')
    {
        while(trim(substr($str,0,1)) === '0')
        {
            $str = ltrim($str,'0');
        }
        return $str;
    }
    

提交回复
热议问题