Home  >  Article  >  Backend Development  >  取数字的正则方法,该怎么解决

取数字的正则方法,该怎么解决

WBOY
WBOYOriginal
2016-06-13 13:31:29816browse

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



想取出$a=234;

------解决方案--------------------
echo (int)str_replace('|','',$a);
------解决方案--------------------

PHP code
$a = '|234|';
preg_match('/\d+/',$a,$match);
print_r($match[0]); <div class="clear">
                 
              
              
        
            </div>
Statement:
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