codecamp

python文本 字符串开头或者结尾匹配

python 文本 字符串开头或者结尾匹配

场景:

字符串开头或者结尾匹配,一般是使用在匹配文件类型或者 url

一般使用 startwith 或者 endwith

  >>> a='http://www.w3cschool.cn/vip'  
  >>> a.startswith ('http')  
  True  

注意:这两个方法里面的参数可以是 str,也可以是元组,但是不可以是列表和字典

  >>> a='http://www.w3cschool.cn/vip'  
  >>> a.startswith (('http','ftp'))  
  True  

如果是列表或者字典,则报错

  >>> a='http://www.w3cschool.cn/vip'  
  >>> a.startswith (['http','ftp'])  
  Traceback (most recent call last):  
    File "", line 1in   
      a.startswith (['http','ftp'])  
  TypeError: startswith first arg must be str or a tuple of str, not list  
  >>>   

其实,除了上面的方法, 也可以使用切片来实现,只不过代码看上去没那么好看而已

  >>> a='http://www.w3cschool.cn/vip'  
  >>> a[0:4]=='http'  
  True  
  >>>   

当然,我们也可以用正则表达式来做,但是理解上面就稍微难度有点。

  >>> import re  
  >>> url = 'http://www.python.org'  
  >>> re.match('http:|https:|ftp:', url)  
  05), match='http:'>  
  >>> help(re.match )  
  Help on function match in module re:  
    
  match(pattern, string, flags=0)  
      Try to apply the pattern at the start of the string, returning  
      a match object, or None if no match was found.  
    
 >>>   


python文本 字符与字符值转换
python文本 单独处理每个字符的方法汇总
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }