我正在使用下面的正则表达式来提取个人网站的网址:
我的数据如下:
https://github.com/abcd
API.ai.
gmail.com
Sampath.S
B.T.M
B.E
Sampath.com
Github.com/Sampath
Linkedin.com/Sampath
Sampath.wordpress.com
4.3
Etc..
62.65%
正则表达式:
urls = re.findall('(?:(?:https?| ftp)://)?[\ w /-?=%。] +。[\ w /-?=%。] +' ,文字)
预期输出:
https://github.com/abcd
Github.com/Sampath
Linkedin.com/Sampath
Sampath.wordpress.com
可以在正则表达式中进行哪些更改以获取预期的输出?