标签:strong http listt font lag url python pattern 解决
获得一个URL地址的扩展名
如:http://www.cnblogs.com/fnng/archive/2013/05/20/3089816.html 的扩展名为html
对于这个问题同样使用正则式来解决
import re def strings(url): listt = [‘.php‘,‘.html‘,‘.asp‘,‘.jsp‘] for lis in listt: suffix = re.findall(lis,url) //re.findall(pattern, string[, flags])搜索string,以列表形式返回全部能匹配的子串。 if len(suffix)>0: return lis url = ‘http://www.cnblogs.com/fnng/archive/2013/05/20/3089816.html‘ a = strings(url) print a
标签:strong http listt font lag url python pattern 解决
原文地址:http://www.cnblogs.com/sunziying/p/6701326.html