Python如何提取CSS/JS/IMG的名称,Pytorch如何使用split
Song •
1518 次浏览 •
0个评论 •
2018年07月11日
在我们进行爬虫或者其他操作中,常常会需要获取CSS/JS/IMG的名称,比如说<link href="[url=http://www.ptorch.com/styles/css/css.css">]http://www.ptorch.com/styles/css/css.css">[/url] [list] []正则获取http://www.ptorch.com/styles/css/css.css,[/] []正则获取css.css,[/] []正则替换/styles/css/css.css为css.css[/] [/list] 接下来我们开始做一下:[code]a='http://www.ptorch.com/styles/css/css.css' x= a.split('/') print(x) print len(x) print x[len(x)-1][/code]输入结果如下: [attach]28[/attach]
用户评论
当前暂无评价,快来发表您的观点吧...
更多相关好文
当前暂无更多相关好文推荐...
-
微信公众号文章/菜单添加小程序时路径如何获取? 2021-12-22
-
如何轻松获取微信小程序路径path? 2021-12-22
-
cannot import name 'CUDA_HOME' from 'mmcv.utils' 2021-12-05
-
vgg的loss一轮达到ln(1/n)阈值,如何解决 2021-11-21
-
如何下载使用utils库 2021-10-27
热门文章
-
cannot import name 'CUDA_HOME' from 'mmcv.utils' 2021-12-05
-
vgg的loss一轮达到ln(1/n)阈值,如何解决 2021-11-21
-
如何下载使用utils库 2021-10-27
-
pytorch调用geforce rtx 3060 2021-10-24
-
pytorch中如何实现多模型的并联 2021-09-15
栏目最新文章
公告提示
- pytorch中文文档
- pytorch官方文档
提交评论