Python用parse取代正則表達式

今天給你介紹一個好東西又跛,可以讓你擺脫正則的噩夢堵腹,那就是 Python 中一個非常冷門的庫 -- parse 查排。

1. 真實案例

下面是 ovs 一個條流表铜幽,現在我需要收集提取一個虛擬機(網口)里有多少流量、多少包流經了這條流表碟刺。也就是每個in_port 對應的 n_bytes锁保、n_packets 的值 。

cookie=0x9816da8e872d717d, duration=298506.364s, table=0, n_packets=480, n_bytes=20160, priority=10,ip,in_port="tapbbdf080b-c2" actions=NORMAL

如果是你,你會怎么做呢爽柒?

先以逗號分隔開來吴菠,再以等號分隔取出值來?

from parse import parse

flow = 'cookie=0x9816da8e872d717d, duration=298506.364s, table=0, n_packets=480, n_bytes=20160, priority=10,ip,in_port="tapbbdf080b-c2" actions=NORMAL'

result = parse('cookie={cookie}, duration={duration}, table={table}, n_packets={n_packets}, n_bytes={n_bytes}, priority={priority},ip,in_port="{in_port}" actions={actions}',flow)

print(result['duration'])

可以看到霉赡,我使用了一個叫做 parse 的第三方包橄务,是需要自行安裝的

python -m pip install parse

從上面這個案例中,你應該能感受到 parse 對于解析規(guī)范的字符串穴亏,是非常強大的蜂挪。

2. parse 的結果

parse 的結果只有兩種結果:

1. 沒有匹配上,parse 的值為None

print(parse("halo", "hello"))

2. 如果匹配上嗓化,parse 的值則 為 Result 實例

print(parse("hello", "hello"))

如果你編寫的解析規(guī)則棠涮,沒有為字段定義字段名,也就是匿名字段刺覆, Result 將是一個 類似 list 的實例严肪,演示如下:

profile = parse("I am {}, {} years old, {}", "I am Jack, 27 years old, male")
print(profile)

print(profile[0])
print(profile[1])
print(profile[2])

而如果你編寫的解析規(guī)則,為字段定義了字段名谦屑, Result 將是一個 類似 字典 的實例驳糯,演示如下:

profile = parse("I am {name}, {age} years old, {gender}", "I am Jack, 27 years old, male")
print(profile)

print(profile['name'])
print(profile['age'])
print(profile['gender'])

3. 重復利用 pattern

和使用 re 一樣,parse 同樣支持 pattern 復用氢橙。

from parse import compile
 
pattern = compile("I am {}, {} years old, {}")

pattern.parse("I am Jack, 27 years old, male")
pattern.parse("I am Tom, 26 years old, male")

4. 類型轉化

從上面的例子中酝枢,你應該能注意到,parse 在獲取年齡的時候悍手,變成了一個"27" 帘睦,這是一個字符串,有沒有一種辦法坦康,可以在提取的時候就按照我們的類型進行轉換呢竣付?

你可以這樣寫。

from parse import parse
profile = parse("I am {name}, {age:d} years old, {gender}", "I am Jack, 27 years old, male")
print(profile)

print(type(profile["age"]))

除了將其轉為 整型滞欠,還有其他格式嗎古胆?

內置的格式還有很多,比如

匹配時間

parse('Meet at {:tg}', 'Meet at 1/2/2011 11:00 PM')


更多類型請參考官方文檔

Type Characters Matched Output
l Letters (ASCII) str
w Letters, numbers and underscore str
W Not letters, numbers and underscore str
s Whitespace str
S Non-whitespace str
d Digits (effectively integer numbers) int
D Non-digit str
n Numbers with thousands separators (, or .) int
% Percentage (converted to value/100.0) float
f Fixed-point numbers float
F Decimal numbers Decimal
e Floating-point numbers with exponent e.g. 1.1e-10, NAN (all case insensitive) float
g General number format (either d, f or e) float
b Binary numbers int
o Octal numbers int
x Hexadecimal numbers (lower and upper case) int
ti ISO 8601 format date/time e.g. 1972-01-20T10:21:36Z (“T” and “Z” optional) datetime
te RFC2822 e-mail format date/time e.g. Mon, 20 Jan 1972 10:21:36 +1000 datetime
tg Global (day/month) format date/time e.g. 20/1/1972 10:21:36 AM +1:00 datetime
ta US (month/day) format date/time e.g. 1/20/1972 10:21:36 PM +10:30 datetime
tc ctime() format date/time e.g. Sun Sep 16 01:03:52 1973 datetime
th HTTP log format date/time e.g. 21/Nov/2011:00:07:11 +0000 datetime
ts Linux system log format date/time e.g. Nov 9 03:37:44 datetime
tt Time e.g. 10:21:36 PM -5:30 time

5. 提取時去除空格

去除兩邊空格

parse('hello {} , hello python', 'hello     world    , hello python')
parse('hello {:^} , hello python', 'hello     world    , hello python')

去除左邊空格

parse('hello {:>} , hello python', 'hello     world    , hello python')

去除右邊空格

parse('hello {:<} , hello python', 'hello     world    , hello python')

6. 大小寫敏感開關

Parse 默認是大小寫不敏感的筛璧,你寫 hello 和 HELLO 是一樣的赤兴。

如果你需要區(qū)分大小寫,那可以加個參數隧哮,演示如下

parse('SPAM', 'spam')

parse('SPAM', 'spam') is None

parse('SPAM', 'spam', case_sensitive=True) is None

7. 匹配字符數

精確匹配:指定最大字符數

parse('{:.2}{:.2}', 'hello')  # 字符數不符

parse('{:.2}{:.2}', 'hell')   # 字符數相符

模糊匹配:指定最小字符數

parse('{:.2}{:2}', 'hello') 

parse('{:2}{:2}', 'hello')

若要在精準/模糊匹配的模式下,再進行格式轉換座舍,可以這樣寫

parse('{:2}{:2}', '1024') 

parse('{:2d}{:2d}', '1024') 

8. 三個重要屬性

Parse 里有三個非常重要的屬性

  • fixed:利用位置提取的匿名字段的元組
  • named:存放有命名的字段的字典
  • spans:存放匹配到字段的位置

下面這段代碼沮翔,帶你了解他們之間有什么不同

profile = parse("I am {name}, {age:d} years old, {}", "I am Jack, 27 years old, male")
profile.fixed

profile.named

profile.spans

9. 自定義類型的轉換

匹配到的字符串,會做為參數傳入對應的函數

比如我們之前講過的,將字符串轉整型

parse("I am {:d}", "I am 27")

type(_[0])

其等價于

def myint(string):
    return int(string)

parse("I am {:myint}", "I am 27", dict(myint=myint))

type(_[0])

利用它采蚀,我們可以定制很多的功能疲牵,比如我想把匹配的字符串弄成全大寫

def shouty(string):
    return string.upper()

parse('{:shouty} world', 'hello world', dict(shouty=shouty))

10 總結一下

parse 庫在字符串解析處理場景中提供的便利,肉眼可見榆鼠,上手簡單纲爸。

在一些簡單的場景中,使用 parse 可比使用 re 去寫正則開發(fā)效率不知道高幾個 level妆够,用它寫出來的代碼富有美感识啦,可讀性高,后期維護起代碼來一點壓力也沒有神妹,推薦你使用颓哮。

學習來源

?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市鸵荠,隨后出現的幾起案子冕茅,更是在濱河造成了極大的恐慌,老刑警劉巖蛹找,帶你破解...
    沈念sama閱讀 212,080評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件姨伤,死亡現場離奇詭異,居然都是意外死亡庸疾,警方通過查閱死者的電腦和手機乍楚,發(fā)現死者居然都...
    沈念sama閱讀 90,422評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來彼硫,“玉大人炊豪,你說我怎么就攤上這事∨±海” “怎么了词渤?”我有些...
    開封第一講書人閱讀 157,630評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長串绩。 經常有香客問我缺虐,道長,這世上最難降的妖魔是什么礁凡? 我笑而不...
    開封第一講書人閱讀 56,554評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮顷牌,結果婚禮上剪芍,老公的妹妹穿的比我還像新娘窟蓝。我一直安慰自己冯袍,他們只是感情好,可當我...
    茶點故事閱讀 65,662評論 6 386
  • 文/花漫 我一把揭開白布呵扛。 她就那樣靜靜地躺著,像睡著了一般帖鸦。 火紅的嫁衣襯著肌膚如雪娶吞。 梳的紋絲不亂的頭發(fā)上垒迂,一...
    開封第一講書人閱讀 49,856評論 1 290
  • 那天,我揣著相機與錄音妒蛇,去河邊找鬼娇斑。 笑死策添,一個胖子當著我的面吹牛,可吹牛的內容都是我干的毫缆。 我是一名探鬼主播,決...
    沈念sama閱讀 39,014評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼乐导,長吁一口氣:“原來是場噩夢啊……” “哼苦丁!你這毒婦竟也來了?” 一聲冷哼從身側響起物臂,我...
    開封第一講書人閱讀 37,752評論 0 268
  • 序言:老撾萬榮一對情侶失蹤旺拉,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后棵磷,有當地人在樹林里發(fā)現了一具尸體蛾狗,經...
    沈念sama閱讀 44,212評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,541評論 2 327
  • 正文 我和宋清朗相戀三年仪媒,在試婚紗的時候發(fā)現自己被綠了沉桌。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,687評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡算吩,死狀恐怖留凭,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情偎巢,我是刑警寧澤蔼夜,帶...
    沈念sama閱讀 34,347評論 4 331
  • 正文 年R本政府宣布,位于F島的核電站压昼,受9級特大地震影響求冷,放射性物質發(fā)生泄漏。R本人自食惡果不足惜窍霞,卻給世界環(huán)境...
    茶點故事閱讀 39,973評論 3 315
  • 文/蒙蒙 一匠题、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧官撼,春花似錦梧躺、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,777評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至秃诵,卻和暖如春续搀,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背菠净。 一陣腳步聲響...
    開封第一講書人閱讀 32,006評論 1 266
  • 我被黑心中介騙來泰國打工禁舷, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留彪杉,地道東北人。 一個月前我還...
    沈念sama閱讀 46,406評論 2 360
  • 正文 我出身青樓牵咙,卻偏偏與公主長得像派近,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子洁桌,可洞房花燭夜當晚...
    茶點故事閱讀 43,576評論 2 349