Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
545 views
in Technique[技术] by (71.8m points)

怎么正则匹配网址中间的域名

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/

正则要怎么写,只想要提取这些域名中间的如:baidu、sm、google、sogou

单独的这样的https://m.sm.cn/会写,
加上这个就不会写了https://so.m.sm.cn/
求助!!!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

php不会,这是python的,这只是个参考。其他情况自己多思考.

import re

pattern=re.compile(r'.([^.]*?).[^.]*?$')
a=re.findall(pattern,'www.ab.baidu.com')
print a 
#输出['baidu']

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...