91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中正則表達式的使用方法

發布時間:2020-10-08 04:35:23 來源:腳本之家 閱讀:128 作者:不正經數據科學家 欄目:開發技術

本文主要關于python的正則表達式的符號與方法。

findall: 找尋所有匹配,返回所有組合的列表
search: 找尋第一個匹配并返回
sub: 替換符合規律的內容,并返回替換后的內容
.:匹配除了換行符以外的任意字符

a = 'xy123'
b = re.findall('x...',a)
print(b)
# ['xy12']

*:匹配前一個字符0次或者無限次

a = 'xyxy123'
b = re.findall('x*',a)
print(b)
# ['x', '', 'x', '', '', '', '', '']

?:匹配前一個字符0次或者1次

a = 'xy123'
b = re.findall('x?',a)
print(b)
# ['x', '', '', '', '', '']

.*:貪心算法

b = re.findall('xx.*xx',secret_code)
print(b)
# ['xxIxxfasdjifja134xxlovexx23345sdfxxyouxx']

.*?:非貪心算法

c = re.findall('xx.*?xx',secret_code)
print(c)
# ['xxIxx', 'xxlovexx', 'xxyouxx']

():括號內結果返回

d = re.findall('xx(.*?)xx',secret_code)
print(d)
for each in d:
  print(each)
# ['I', 'love', 'you']
# I
# love
# you

re.S使得.的作用域包括換行符”\n”

s = '''sdfxxhello
xxfsdfxxworldxxasdf'''

d = re.findall('xx(.*?)xx',s,re.S)
print(d)
# ['hello\n', 'world']

對比findall與search的區別

s2 = 'asdfxxIxx123xxlovexxdfd'
f = re.search('xx(.*?)xx123xx(.*?)xx',s2).group(2)
print(f)
f2 = re.findall('xx(.*?)xx123xx(.*?)xx',s2)
print(f2[0][1])
# love
# love

雖然兩者結果相同,但是search是搭配group來得到第二個匹配,而findall的結果是[(‘I', ‘love')],包含元組的列表,所以需要f2[0][1]來引入。

sub的使用

s = '123rrrrr123'
output = re.sub('123(.*?)123','123%d123'%789,s)
print(output)
# 123789123

例如我們需要將文檔中的所有的png圖片改變路徑,即需要找到所有的 .png 結尾,再將其都加上路徑,

import re

def multiply(m):
  # Convert group 0 to an integer.
  v = m.group(0)
  print(v)
  # Multiply integer by 2.
  # ... Convert back into string and return it.
  print('basic/'+v)
  return 'basic/'+v

結果如下

>>>autoencoder.png
  basic/autoencoder.png
  RNN.png
  basic/RNN.png
  rnn_step_forward.png
  basic/rnn_step_forward.png
  rnns.png
  basic/rnns.png
  rnn_cell_backprop.png
  basic/rnn_cell_backprop.png
  LSTM.png
  basic/LSTM.png
  LSTM_rnn.png
  basic/LSTM_rnn.png
  attn_mechanism.png
  basic/attn_mechanism.png
  attn_model.png
  basic/attn_model.png

仿照上面案例,我們可以方便的對我們的任務進行定制。

subn相比sub,subn返回元組,第二個元素表示替換發生的次數:

import re

def add(m):
  # Convert.
  v = int(m.group(0))
  # Add 2.
  return str(v + 1)

# Call re.subn.
result = re.subn("\d+", add, "1 2 3 4 5")

print("Result string:", result[0])
print("Number of substitutions:", result[1])
>>>
Result string: 11 21 31 41 51
Number of substitutions: 5

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

荣成市| 焉耆| 达尔| 本溪市| 鲁山县| 昌乐县| 九寨沟县| 浦北县| 尤溪县| 乌拉特后旗| 颍上县| 视频| 万宁市| 乐都县| 饶河县| 内乡县| 司法| 五寨县| 正镶白旗| 剑阁县| 乐昌市| 襄樊市| 崇州市| 墨竹工卡县| 陵水| 都兰县| 渝北区| 湘阴县| 枣阳市| 连城县| 麦盖提县| 清涧县| 龙山县| 赤峰市| 嘉禾县| 五常市| 水城县| 博客| 云浮市| 罗城| 北安市|