欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 正则如何匹配2级域名

程序员文章站 2023-12-31 08:04:28
...
域名状态可能是:
xinwen.xxx.com
xinwen.xxx.cn
xinwen.xxx.net
http://xinwen.xxx.com/

php 如何用正则表达式 preg_replace 得到, xinwen


回复讨论(解决方案)

(?:http\:\/\/)?([^.]+)\.xxx\.(?:(com|cn|net))

$s=  
Array
(
[0] => xinwen
[1] => xinwen
[2] => xinwen
[3] => xinwen
)

正则都要mark学习 弱项

上一篇:

下一篇: