字符串方法

作者:追风剑情 发布于:2017-12-9 18:36 分类:Python

示例

  1. # -*- coding: cp936 -*-
  2. import string
  3. from string import digits,letters,lowercase,printable,punctuation,uppercase
  4. print '字符串常量'
  5. print digits #包含数字0~9的字符串
  6. print letters #包含所有字母(大写或小写)的字符串
  7. print lowercase #包含所有小写字母的字符串
  8. print printable #包含所有可打印字符的字符串
  9. print punctuation #包含所有标点的字符串
  10. print uppercase #包含所有大写字母的字符串
  11. #在Python3.0中letters已被移除.换成了ascii_letters
  12.  
  13. print '字符串方法'
  14. print 'find方法'
  15. print 'With a moo-moo here, and a moo-moo there'.find('moo')
  16. title = "Monty Python's Flying Circus"
  17. print title.find('Monty') #返回字符串最左边索引
  18. print title.find('Python1') #没找到,返回-1
  19. subject = '$$$ Get rich now!!! $$$'
  20. print subject.find('$$$')
  21. print subject.find('$$$', 1) #第2个参数为开始搜索的起始索引
  22. print subject.find('!!!', 0, 16) #提供起始点和结束点
  23.  
  24. print 'join方法'
  25. seq = ['1', '2', '3', '4', '5']
  26. sep = '+'
  27. print sep.join(seq)
  28. dirs = '', 'usr', 'bin', 'env'
  29. print '/'.join(dirs)
  30. print 'C:' + '\\'.join(dirs)
  31.  
  32. print 'lower方法'
  33. print 'Trondheim Hammer Dance'.lower()
  34.  
  35. #会把单词首字母转成大写,其他字母小写
  36. print 'title方法'
  37. print "that's all folks".title()
  38. print string.capwords("that's all folks")
  39.  
  40. #替换子串
  41. print 'replace方法'
  42. print 'This is a test'.replace('is', 'eez')
  43.  
  44. #分割字符串
  45. print 'split方法'
  46. print '1+2+3+4+5'.split('+')
  47. print '/usr/bin/env'.split('/')
  48. print 'Using the default'.split() #用默认分隔符(空格、制表、换行等)
  49.  
  50. #去除两侧空格
  51. print 'strip方法'
  52. print ' internal whitespace is kept '.strip()
  53. #也可以指定删除两侧的某些字符
  54. print '*** SPAM * for * everyone!!! ***'.strip(' *!')
  55.  
  56. #单字符替换(同时替换多个)
  57. print 'maketrans方法'
  58. #制作一张字符转换表(仅支持ASCII字符集)
  59. table = string.maketrans('cs', 'kz')
  60. print 'this is an incredible test'.translate(table)
  61. print 'this is an incredible test'.translate(table, 'it') #第2个参数指定想要删除的字符
  62. print u'Unicode字符串'.upper()#字符串前面加u代表Unicode

运行测试

111111.png

标签: Python

« 字典 | 广告牌»
Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号