问题描述
(
)
在 regexp 和python
中使用group(1)
来检索捕获的字符串(如果没有找到结果re.search
会返回,所以不要 直接 使用):None
group()
title_search = re.search('<title>(.*)</title>', html, re.IGnorECASE)
if title_search:
title = title_search.group(1)
解决方法
我想要一个正则表达式来从 HTML 页面中提取标题。目前我有这个:
title = re.search('<title>.*</title>',html,re.IGNORECASE).group()
if title:
title = title.replace('<title>','').replace('</title>','')
是否有正则表达式可以仅提取