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
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学习 弱项