How to remove numbers from string in php

WJ
Release: 2023-03-01 10:48:01
Original
3043 people have browsed it

How to remove numbers from string in php

php去除字符串中数字的方法:

这个比较简单,但是也有些需要注意的地方,先贴代码

$class=preg_replace("\\d+",'', $res);
Copy after login

需要使用preg_replace函数,但是只是这么写的话,会报错

Warning: preg_replace(): Delimiter must not be alphanumeric or backslash

翻译过来就是定界符不能是字母数字或反斜线。

想了一下,在正则表达式首尾加了一对/

$class=preg_replace("/\\d+/",'', $res);
Copy after login

这样就成功了

相关参考:php中文网

The above is the detailed content of How to remove numbers from string in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
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
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!