Posted in Python onMarch 01, 2017
下面是split截取获得
>>> str = 'http://manualfile.s3.amazonaws.com/pdf/gti-chis-1-user-9fb-0-7a05a56f0b91.pdf' >>> print str.split() ['http://manualfile.s3.amazonaws.com/pdf/gti-chis-1-user-9fb-0-7a05a56f0b91.pdf'] >>> print str.split('/') ['http:', '', 'manualfile.s3.amazonaws.com', 'pdf', 'gti-chis-1-user-9fb-0-7a05a56f0b91.pdf'] >>> print str.split('/')[-1] gti-chis-1-user-9fb-0-7a05a56f0b91.pdf >>> print str.split('/')[-1].split('.')[0] gti-chis-1-user-9fb-0-7a05a56f0b91 >>>
下面是通过切片获得的
name = str[str.rfind("/")+1:str.rfind(".")]
与上面的结果是一样的。
如果找到其他方法,会继续补充的。
以上这篇python 截取 取出一部分的字符串方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
python 截取 取出一部分的字符串方法
- Author -
jingxian声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@