Python字串及文字模式方法詳解

2022-09-28 05:27:10 字數 3192 閱讀 2783

一、你想在字串中搜尋和匹配指定的文字模式

遺漏點:re模組其實也是幫助我們進行字串處理的重要工具,我之前總是想著用內建的函式來處理,其實如果是複雜的文字和資料結構,re模組能幫助我們處理很多資訊。

對於簡單的字面模式,直接使用 str.replace() 方法即可,比如:

>>> text = 'yeah, but no, but yeah, but no, but yeah'

>>> text.replace('yeah', 'yep')

'yep, but no, but yep, but no, but yep'

>>>

對於複雜的模式,請使用 re 模組中的 sub() 函式。 為了說明這個,假設你想將形式為 11/27/2012 的日期字串改成 2012-11-27 。示例如下:

>>> text = 'today is 11/27/2012. pycon starts 3/13/2013.'

>>> imp程式設計客棧ort re

>>> re.sub(r'(\d+)/(\d+)/(\d+)', r'\3-\1-\2', text)

'today is 2012-11-27. pycon starts 2013-3-13.'

二、你需要以忽略大小寫的方式搜尋與替換文字字串

為了在文字操作時忽略大小寫,你需要在使用 re 模組的時候給這些操作提供 re.ignorecase 標誌引數。比如:

>>> text = 'upper python, lower python, mixed python'

>>> re.findall('python', text, flags=re.ignorecase)

['python', 'python', 'python']

>>> re.sub('python', 'snake', text, flags=re.ignorecase)

'upper snake, lower snake, mixed snake'

最後的那個例子揭示了乙個小缺陷,替換字串並不會自動跟被匹配字串的大小寫保持一致。 為了修復這個,你可能需要乙個輔助函式,就像下面的這樣:

def matchcase(word):

def replace(m):

text = m.group()

if text.isupper():

return word.upper()

elif text.islower():

return word.lower()

elif text[0].isupper():

return word.capitalize()

else:

return word

return replace

>>> re.sub('python', matchcase('snake'), text, flags=re.ignorecase)

'upper snake, lower snake, mixed snake'

matchcase('snake程式設計客棧') 返回了乙個**函式(引數必須是 match 物件),sub() 函式除了接受替換字串外,還能接受乙個**函式。

三、你正在試著使用正規表示式去匹配一大塊的文字,而你需要跨越多行去匹配

>>> comment =www.cppcns.com re.compile(r'/\*(.*?)\*/')

>>> text1 = '/* this is a comment */'

>>> text2 = '''/* this is a

... multiline comment */

... '''

>>>

>>> comment.findall(text1)

[' this is a comment ']

>>> comment.findall(text2)

re.compile() 函式接受乙個標誌引數叫 re.dotall ,在這裡非常有用。 它可以讓正規表示式中的點(.)匹配包括換行符在內的任意字元。比如:

>>> comment = re.compile(r'/\*(.*?)\*/', re.dotall)

>>> comment.findall(text2)

[' this is a\n multiline comment '] 

四、你想通過某種對齊方式來格式化字串

於基本的字串對齊操作,可以使用字串的 ljust() , rjust() 和 center() 方法。比如:

>>> text = 'hello world'

>>> text.ljust(20)

'hello world '

>>> text.rjust(20)

' hello world'

>>> text.center(20)

' hello world '

>>> text.rjust(20,'=')

'*****====hello world'

>>> text.center(20,'*')

'****hello world*****'

>>>

函式 format() 同樣可以用來很容易的對齊字串。 你要做的就是使用 或者 ^ 字元後面緊跟乙個指定的寬度。比如:

>>> format(text, '>20')

' hello world'

>>> format(text, '<20')

'hello world '

>>> format(text, '^20')

' hello world '

>>>

如果你想指定乙個非空格的填充字元,將它寫到對齊字元的前面即可:

>>> format(text, '=>20s')

'*****====hello world'

>>> format(text, '*^20s')

'****hello woiidvhvhfqcrld*****'

>>>

當格式化多個值的時候,這些格式**也可以被用在 format() 方法中。比如:

>>> x = 1.2345

>>> format(x, '>10')

'www.cppcns.com 1.2345'

>>> format(x, '^10.2f')

' 1.23 '

>>>

本文標題: python字串及文字模式方法詳解

本文位址:

Python字串expandtabs 方法

python字串expandtabs 方法返回乙個字串的副本,其中tab字元。使用空格擴充套件 t 可選地使用給定的製表符大小 tabize 預設值為8 語法 str.expandtabs tabsize 8 引數 tabsize 這指定了替換字元 t 要替換的字元數。返回值 此方法返回乙個字串的副...

python字串 Python 字串

建立字串很簡單,只要為變數分配乙個值即可。例如 var1 hello world var2 python runoob python訪問字串中的值python不支援單字元型別,單字元在 python 中也是作為乙個字串使用。python訪問子字串,可以使用方括號來擷取字串,如下例項 例項 pytho...

python字串 python字串

單引號示例常用的轉義字元 轉義字元案例1format 格式化練習1 help sisdigit,isnumeric,isdecimal 三個判斷數字的函式 isalnum 檢查字串是否由字母加數字組成 s test1split 字串拆分 splitlines 已換行符拆分 join 合成字串 upp...