Ask a question about the Str_replace function

Source: Internet
Author: User
Ask a question about a str_replace function
There is a question to ask, such as the following set of data

00010,00014,0000000023,24,0027,0000

I want to get rid of all 0, but the 0 in front of the "," is not removed.

That

00010,00014,0000000023,24,0027,0000

This set of data becomes

10,14,23,24,27

May I ask how this should be done?

------Solution--------------------
echo preg_replace ('/(^|,) 0+/', ' $ ', ' 00010,00014,0000000023,24,0027,0000 ');

10,14,23,24,27,

1, Str_replace can only replace the fixed string, the indefinite string need to use regular expression
2, do not think 10,14,23,24,27 This result is correct, because he lost a
------Solution--------------------
PHP Code
$str    = "00010,00014,0000,000023,24,0027,0000"; Echo    
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.