Home > Backend Development > PHP Tutorial > 求一正则解决方法

求一正则解决方法

WBOY
Release: 2016-06-13 11:56:38
Original
751 people have browsed it

求一正则
$str="www.fdsalflad.com";
$str="www.fsalfd.cn";
$str="www.fsaldddad.com";


注意,每个域名 的最后一位有个d,非末段的不要删除,我要删除,如何?

$arrRep = preg_replace("/([d]?).com/" ,"", $host);
Copy after login


我的为何不对啊?
谢谢
------解决方案--------------------
\b 单词边界

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