Home > Backend Development > PHP Tutorial > 跪求删除编号的正则表达式

跪求删除编号的正则表达式

WBOY
Release: 2016-06-23 14:14:03
Original
844 people have browsed it

1、我们
11、我们
122、我们
1.他们
12.他们
133.他们
3 你们
33 你们
234 你们


诸如此类的有的是数字+顿号、有的是数字+点,有的是数字+空格,请问这个该如何用正则删除呢?
我只会最简单的

$c=preg_replace("/\d、/","",$yuanwen,-1);
Copy after login

这个只能删除掉个位数+顿号的
跪求大神帮忙


回复讨论(解决方案)

$c=preg_replace("/\d+[、.\s]/","",$yuanwen,-1);

$s =<<< TXT1、我们11、我们122、我们1.他们12.他们133.他们3 你们33 你们234 你们TXT;echo preg_replace("/\d+(?:、|\.|\s)/", "", $s);
Copy after login
我们
我们
我们
他们
他们
他们
你们
你们
你们

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