Python文字列の処理

6182 ワード

普段はPythonを使うのはいくつかのスクリプトを処理するので、その中で最も使用頻度が大きいのは文字列の処理の方面で、そのためいくつかのよく使う文字列の処理の使用方法を整理して、予備を学びます.
文字列の基本操作
スライス
# str[beg:end]
# (    0   )    beg    ,       end-1    ,       [beg, end)
str = ' python str '
print str[3:6]    # tho
# str[beg:end:step]
#   [beg, end)      ,   step     
print str[2:7:2]  # yhn

元の文字列
#        r/R
#                     ,              
print r'
' #

文字列の繰り返し
# str * n, n * str
# n     int   
str = "hi"
print str*2   # hihi
print 2*str   # hihi

in
str = ' python'
print 'p' in str    # True
print 'py' in str   # True
print 'py' not in str # False

文字列共通関数
スペースを削除
str = ' python str '
print str
#      
print str.strip()
#      
print str.lstrip()
#      
print str.rstrip()

区切り文字列
str = ' 1 , 2 , 3 , 4 , 5 , '
#         
print str.split()   # ['1', ',', '2', ',', '3', ',', '4', ',', '5', ',']
#           ,       ,        
print str.split(' ') # ['', '1', ',', '2', ',', '3', ',', '4', ',', '5', ',', '']
#            
print str.split(',') # [' 1 ', ' 2 ', ' 3 ', ' 4 ', ' 5 ', ' ']
print str.split('3 ,') # [' 1 , 2 , ', ' 4 , 5 , ']
str = 'mississippi'
print str.rstrip('ip')
#   , python    "\r","
","\r
", str = 'ab c

de fg\rkl\r
' print str.splitlines() # ['ab c', '', 'de fg', 'kl'] print str.splitlines(True) # ['ab c
', '
', 'de fg\r', 'kl\r
']

つづり文字列
# str.join()                            。
str = '-'
seq = ("a", "b", "c"); #      
print str.join(seq)  # 'a-b-c'

統計文字列内の文字の出現回数
# str.count(sub, start= 0,end=len(string))
str = "thing example....wow!!!"
print str.count('i', 0, 5)  # 1
print str.count('e')  # 2

文字列にサブ文字列が含まれているかどうかを検出
# str.find(str, beg=0, end=len(string))
#                 ,    -1。
str1 = "this is string example....wow!!!"
str2 = "exam"
print str1.find(str2)      # 15
print str1.find(str2, 10)  # 15
print str1.find(str2, 40)  # -1

# str.index(str, beg=0, end=len(string))
#                 ,      。
print str1.index(str2)     # 15
print str1.index(str2, 10) # 15
print str1.index(str2, 40)
# Traceback (most recent call last):
#   File "test.py", line 8, in
#   print str1.index(str2, 40);
#   ValueError: substring not found
# shell returned 1

# str.rfind(str, beg=0, end=len(string))
# str.rindex(str, beg=0, end=len(string))

文字列が指定した接頭辞、接尾辞で終わるかどうかを判断します.
# str.startswith(str, beg=0,end=len(string))
#               ,       True,     False
str = "this is string example....wow!!!"
print str.startswith( 'this' );       # True
print str.startswith( 'is', 2, 4 )    # True
print str.startswith( 'this', 2, 4 )  # False

# str.endswith(suffix[, start[, end]])
#          True,    False
suffix = "wow!!!"
print str.endswith(suffix);         # True
print str.endswith(suffix,20);      # True
suffix = "is";
print str.endswith(suffix, 2, 4);   # True
print str.endswith(suffix, 2, 6);   # False

指定した区切り文字に基づいて文字列を分割
# str.partition(del)
#     3    ,            ,         ,            。
str = "http://www.baidu.com/"
print str.partition("://")   # ('http', '://', 'www.baidu.com/')
# string.rpartition(str)        

置換文字列
# str.replace(old, new[, max])
#       old(    )     new(    ),         max,       max  。
str = "thing example....wow!!! thisslly string";
print str.replace("is", "was");     # thwas was string example....wow!!! thwas was really string
print str.replace("is", "was", 3);  # thwas was string example....wow!!! thwas is really string
# str.expandtabs(tabsize=8)
#        tab   ('\t')    ,tab   ('\t')        8

文字列構成の検出
#     
str.isdigit()    #              
str.isnumeric()  #              ,        unicode  
str.isdecimal()  #                。        unicode  
#     
str.isalpha()   #              
#        
str.isalnum()   #                
#     
str.isspace()   #              
str.islower()   #               
str.isupper()   #                  
str.istitle()   #                      ,        

文字列処理
str.capitalize()   #               ,       
str.lower()        #                
str.upper()        #                 
str.swapcase()     #               
max(str)    #       str       
min(str)    #       str       
len(str)    #         
str(arg) #   arg     string

出力のフォーマット
中央揃え
# str.center(width[, fillchar])
#           ,           width      。         
str = "this is string example....wow!!!"
print str.center(40, 'a')   # aaaathis is string  example....wow!!!aaaa

右揃え
# str.zfill(width)
#           ,       ,    0
str = "this is string example....wow!!!"
print str.zfill(40)   # 00000000this is string example....wow!!!

出力フォーマット
print "My name is %s and weight is %d kg!" % ('Zara', 21)
# My name is Zara and weight is 21 kg!
print '%(language)s has %(number)03d quote types.' % {"language": "Python", "number": 2}
# Python has 002 quote types.
# str.format(*args, **kwargs)
print '{0}, {1}, {2}'.format('a', 'b', 'c')  # a, b, c
print '{1}, {0}, {2}'.format('a', 'b', 'c')  # b, a, c