PHP searches for the first non-zero position in a string and intercepts it

高洛峰
Release: 2023-03-06 09:28:02
Original
1057 people have browsed it

This article mainly introduces the method of finding the first non-0 position in a string in PHP and intercepting it. It has a very good reference value. Let’s take a look at it with the editor.

Not much to say , please see the code:

$str = '00000000000000000000000000000000000000001234506';
$preg = '/[0]*/';
$result = preg_replace($preg, '', $str, 1);
Copy after login

PHP searches for the first non-zero position in a string and intercepts it

More PHP search string interception of the first non-0 position related articles Please pay attention to PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!