Home > Backend Development > PHP Tutorial > 取数目字的正则方法

取数目字的正则方法

WBOY
Release: 2016-06-13 11:04:27
Original
872 people have browsed it

取数字的正则方法
$a = '|234|';



想取出$a=234;
------解决方案--------------------
echo (int)str_replace('
------解决方案--------------------
','',$a);
------解决方案--------------------

$a = '<br><font color='#FF8000'>------解决方案--------------------</font><br>234<br><font color='#FF8000'>------解决方案--------------------</font><br>';<br />preg_match('/\d+/',$a,$match);<br />print_r($match[0]);
Copy after login

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