php - How to regularly match the domain name in the middle of the URL
淡淡烟草味
淡淡烟草味 2017-05-16 13:10:17
0
2
560
https://so.m.sm.cn/
https://m.sm.cn/
https://www.google.com/
https://m.sogou.com/
https://wap.sogou.com/
https://m.baidu.com/
https://www.google.fr/
https://wisd.sogou.com/

How to write the regular expression? I only want to extract the middle of these domain names, such as: baidu, sm, google, sogou

I can write https://m.sm.cn/ alone, but I can’t write https://so.m.sm.cn/ if I add this.
Help! ! !

淡淡烟草味
淡淡烟草味

reply all(2)
巴扎黑

php doesn’t work, this is for python, this is just a reference. In other cases, think more on your own.

import re

pattern=re.compile(r'\.([^\.]*?)\.[^\.]*?$')
a=re.findall(pattern,'www.ab.baidu.com')
print a 
#输出['baidu']
仅有的幸福
preg_match('#://([\w\-\.]+)/?\b#',$string,$m) && $domain=$m[1];
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template