Home > Backend Development > PHP Tutorial > 求一个正则表达式 去除小数点后面的000

求一个正则表达式 去除小数点后面的000

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-23 14:19:39
Original
1103 people have browsed it

比如
8.38370000
要结果为 8.3837


8.0038370000
要结果为 8.3837


8.38370010
要结果为 8.3837001



回复讨论(解决方案)

$s =<<< TXT8.383700008.00383700008.38370010TXT;echo preg_replace('/(?<=\d)0+\b|(?<=\.)0+/', '', $s);
Copy after login
8.3837
8.3837
8.3837001

8.0038370000 要变成 8.3837 应该是无理要求

$string = "8.38370010";echo (float)$string;
Copy after login
8.3837001

preg_replace('/[^0]0+$/','',$s);8.0038370000 要变成 8.3837 应该是无理要求

preg_replace('/[^0]0+$/','',$s);8.0038370000 要变成 8.3837 应该是无理要求

打错了.  

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