Python中正則表達式基礎知識

1、正則表達式python

  1.使用正則表達式的動機正則表達式

    1. 文本處理已經成爲計算機常見工做之一sql

    2. 對文本內容的搜索,定位,提取是邏輯比較複雜的工做編程

    3. 爲了快速方便的解決上述問題,產生了正則表達式技術
  2.定義:
    即文本的高級匹配模式,提供搜索,替換等功能。其本質是由一系列字符和特殊符號構成的字串,這個字串即正則表達式。
  3.原理:
    經過普通字符和有特定含義的字符,來組成字符串,用以描述必定的字符串規則,好比:重複,位置等,來表達某類特定的字符串,進而匹配。
  4.元字符使用:
    1.普通字符--------匹配規則:每一個普通字符匹配其對應的字符
      e.g.
        In : re.findall('ab',"abcdefabcd")
        Out: ['ab', 'ab']
    注意:正則表達式在python中也能夠匹配中文
 
    2.或關係(|)
      元字符: |
      匹配規則: 匹配 | 兩側任意的正則表達式便可
      e.g.
        In : re.findall('com|cn',"www.baidu.com/www.tmooc.cn")
        Out: ['com', 'cn']
    3.匹配單個字符
      元字符: .
      匹配規則:匹配除換行外的任意一個字符
      e.g.
        In : re.findall('張.豐',"張三丰,張四豐,張五豐")
        Out: ['張三丰', '張四豐', '張五豐']
    4.匹配字符集
      元字符: [字符集]
      匹配規則: 匹配字符集中的任意一個字符
      表達形式:
          [abc#!好] 表示 [] 中的任意一個字符
          [0-9],[a-z],[A-Z] 表示區間內的任意一個字符
          [_#?0-9a-z] 混合書寫,通常區間表達寫在後面
      
      e.g.
        In : re.findall('[aeiou]',"How are you!")
        Out: ['o', 'a', 'e', 'o', 'u']
    5.匹配字符集反集
      元字符:[^字符集]
      匹配規則:匹配除了字符集之外的任意一個字符
      e.g.
        In : re.findall('[^0-9]',"Use 007 port")
        Out: ['U', 's', 'e', ' ', ' ', 'p', 'o', 'r', 't']
    6.匹配字符串開始位置
      元字符: ^
      匹配規則:匹配目標字符串的開頭位置
      e.g.
        In : re.findall('^Jame',"Jame,hello")
        Out: ['Jame']
    7.匹配字符串的結束位置
      元字符: $
      匹配規則: 匹配目標字符串的結尾位置
      e.g.
        In : re.findall('Jame$',"Hi,Jame")
        Out: ['Jame']
      規則技巧: ^ 和 $必然出如今正則表達式的開頭和結尾處。若是兩則同時出現,則中間的部分必須匹配整個目標字符串的所有內容------絕對匹配。
    8.匹配字符重複
      元字符: *
      匹配規則:匹配前面的字符出現0次或屢次
      e.g.
        In : re.findall('wo*',"wooooo~~w!")
        Out: ['wooooo', 'w']
 
      元字符:+
      匹配規則: 匹配前面的字符出現1次或屢次
      e.g.
        In : re.findall('[A-Z][a-z]+',"Hello World")
        Out: ['Hello', 'World']
 
      元字符:?
      匹配規則: 匹配前面的字符出現0次或1次
      e.g. 匹配整數
      In [28]: re.findall('-?[0-9]+',"Jame,age:18, -26")
      Out[28]: ['18', '-26']
 
      元字符:{n}
      匹配規則: 匹配前面的字符出現n次
      e.g. 匹配手機號碼
        In : re.findall('1[0-9]{10}',"Jame:13886495728")
        Out: ['13886495728']
 
      元字符:{m,n}
      匹配規則: 匹配前面的字符出現m-n次
      e.g. 匹配qq號
        In : re.findall('[1-9][0-9]{5,10}',"Baron:1259296994")
        Out: ['1259296994']
 
    9.匹配任意(非)數字字符
      元字符: \d \D
      匹配規則:\d 匹配任意數字字符,\D 匹配任意非數字字符
      e.g. 匹配端口
        In : re.findall('\d{1,5}',"Mysql: 3306, http:80")
        Out: ['3306', '80']
 
    10.匹配任意(非)普通字符
      元字符: \w \W
      匹配規則: \w 匹配普通字符,\W 匹配非普通字符
      說明: 普通字符指數字,字母,下劃線,漢字。
      e.g.
        In : re.findall('\w+',"server_port = 8888")
        Out: ['server_port', '8888']
 
    11.匹配任意(非)空字符
      元字符: \s \S
      匹配規則: \s 匹配空字符,\S 匹配非空字符
      說明:空字符指 空格 \r \n \t \v \f 字符
      e.g.
        In : re.findall('\w+\s+\w+',"hello world")
        Out: ['hello world']
 
 
    12.匹配開頭結尾位置
      元字符: \A \Z
      匹配規則: \A 表示開頭位置,\Z 表示結尾位置
 
    13.匹配(非)單詞的邊界位置
      元字符: \b \B
      匹配規則: \b 表示單詞邊界,\B 表示非單詞邊界
      說明:單詞邊界指數字字母(漢字)下劃線與其餘字符的交界位置。
      e.g.
        In : re.findall(r'\bis\b',"This is a test.")
        Out: ['is']
 
  5.對元字符分類:
      
 
  6.正則表達式的轉義
    1.若是使用正則表達式匹配特殊字符則須要加 \ 表示轉義。
      特殊字符: . * + ? ^ $ [] () {} | \
 
      e.g. 匹配特殊字符 . 時使用 \. 表示自己含義
        In : re.findall('-?\d+\.?\d*',"123,-123,1.23,-1.23")
        Out: ['123', '-123', '1.23', '-1.23']
 
    2. 在編程語言中,常使用原生字符串書寫正則表達式避免多重轉義的麻煩。
      (在這裏,正則表達式須要轉義,書寫成python字符串格式也須要轉義,所以雙重轉義,爲避免混亂,對python層面的轉義用原生字符串書寫)
        python字符串 -------------> 正則 --------> 目標字符串
        "\\$\\d+"    解析爲  \$\d+   匹配       "$100"
 
        "\\$\\d+"       等同於   r"\$\d+"
 
  7.貪婪模式和非貪婪模式
    1. 定義
        貪婪模式: 默認狀況下,匹配重複的元字符老是儘量多的向後匹配內容。好比: * + ? {m,n}
        非貪婪模式(懶惰模式): 讓匹配重複的元字符儘量少的向後匹配內容。
      注:二者的前提是正則表達式條件必須總體知足時,才能談貪婪和非貪婪
 
    2. 貪婪模式轉換爲非貪婪模式
      在匹配重複元字符後加 '?' 號便可
          * : *?
          + : +?
          ? : ??
          {m,n} : {m,n}?2019/4/25 RE
 
      e.g.
        In : re.findall(r'\(.+?\)',"(abcd)efgh(higk)")
        Out: ['(abcd)', '(higk)']
 
  8.正則表達式分組
    1. 定義
      在正則表達式中,以()創建正則表達式的內部分組,子組是正則表達式的一部分,能夠做爲內部總體操做對象。
    2. 做用
      1.能夠被做爲總體操做,改變元字符的操做對象
        e.g. 改變 +號 重複的對象
          In : re.search(r'(ab)+',"ababababab").group()
          Out: 'ababababab'
 
        e.g. 改變 |號 操做對象
          In : re.search(r'(王|李)\w{1,3}',"王者榮耀").group()
          Out: '王者榮耀'
 
      2.能夠經過編程語言某些接口獲取匹配內容中,子組對應的內容部分
        e.g. 獲取url協議類型
          re.search(r'(https|http|ftp|file)://\S+',"https://www.baidu.com").group(1)
    3. 捕獲組
      能夠給正則表達式的子組起一個名字,表達該子組的意義。這種有名稱的子組即爲捕獲組。
      格式: (?Ppattern)
      e.g. 給子組命名爲 "pig"
        In : re.search(r'(?Pab)+',"ababababab").group('pig')
        Out: 'ab'
    4. 注意事項
      一個正則表達式中能夠包含多個子組
      子組能夠嵌套,可是不要重疊或者嵌套結構複雜
      子組序列號通常從外到內,從左到右計數(以下圖,序號表示前後順序)
      
 
  9.正則表達式匹配原則
    
    1. 正確性,可以正確的匹配出目標字符串.
    2. 排他性,除了目標字符串以外儘量少的匹配其餘內容.
    3. 全面性,儘量考慮到目標字符串的全部狀況,不遺漏.
 
 
2、Python中 re模塊使用
  
  1.re模塊相關函數:
 
    regex = compile(pattern,flags = 0)
      功能: 生產正則表達式對象
      參數: pattern 正則表達式
      flags 功能標誌位,擴展正則表達式的匹配
      返回值: 正則表達式對象
 
    re.findall(pattern,string,flags = 0)
      功能: 根據正則表達式匹配目標字符串內容
      參數: pattern 正則表達式
      string 目標字符串
      flags 功能標誌位,擴展正則表達式的匹配
      返回值: 匹配到的內容列表,若是正則表達式有子組則只能獲取到子組對應的內容
 
    
    regex.findall(string,pos,endpos)
      功能: 根據正則表達式匹配目標字符串內容
      參數: string 目標字符串
      pos 截取目標字符串的開始匹配位置
      endpos 截取目標字符串的結束匹配位置
      返回值: 匹配到的內容列表,若是正則表達式有子組則只能獲取到子組對應的內容
 
    
import re

s = "Levi:1994,Sunny:1993"
pattern = r"(\w+):(\d+)"

# re模塊調用
# l = re.findall(pattern, s)
# print(l)

# compile對象調用
regex = re.compile(pattern, flags=0)
l = regex.findall(s, 0, 55 )
print(l)




[('Levi', '1994'), ('Sunny', '1993')]

 

 
    re.split(pattern,string,flags = 0)
      功能: 使用正則表達式匹配內容,切割目標字符串
      參數: pattern 正則表達式
      string 目標字符串
      flags 功能標誌位,擴展正則表達式的匹配
      返回值: 切割後的內容列表
 
    
import re

s = "hello world how are  you"
# pattern = r"[^\w]+"
pattern = r"\W+"

l = re.split(pattern, s)
print(l)

 

 
    re.sub(pattern,replace,string,max,flags = 0)
      功能: 使用一個字符串替換正則表達式匹配到的內容
      參數: pattern 正則表達式
      replace 替換的字符串
      string 目標字符串
      max 最多替換幾處,默認替換所有
      flags 功能標誌位,擴展正則表達式的匹配
      返回值: 替換後的字符串
 
    
import re

s = "時間:2019/10/12"
ns = re.sub(r'/', '-', s)
print(ns)


時間:2019-10-12

 

 
    re.subn(pattern,replace,string,max,flags = 0)
      功能: 使用一個字符串替換正則表達式匹配到的內容
      參數: pattern 正則表達式
      replace 替換的字符串
      string 目標字符串
      max 最多替換幾處,默認替換所有
      flags 功能標誌位,擴展正則表達式的匹配
      返回值: 替換後的字符串和替換了幾處
 
      
import re

s = "時間:2019/10/12"
ns = re.subn(r'/', '-', s, 4)
print(ns)



('時間:2019-10-12', 2)

 

 
    
    re.finditer(pattern,string,flags = 0)
      功能: 根據正則表達式匹配目標字符串內容
      參數: pattern 正則表達式
      string 目標字符串
      flags 功能標誌位,擴展正則表達式的匹配
      返回值: 匹配結果的迭代器(迭代器用一個取一個,節省內存資源)
 
    
import re

s = '2019年,建國70週年'
pattern = r"\d+"

ite = re.finditer(pattern, s)

# 方法1
print("ite類型", type(ite))
print(ite.__next__().group())
print(ite.__next__().group())

# 方法2
print("=========")
for i in ite:
    print(i.group())


ite類型 <class 'callable_iterator'>
2019
70

 

 
    re.fullmatch(pattern,string,flags=0)
      功能:徹底匹配某個目標字符串
      參數:pattern 正則
      string 目標字符串
      返回值:匹配內容match object
      注:該函數可用於密碼驗證:密碼只容許字母和數字,若是返回值爲None,則密碼不符合規範,含有數字和字母之外的字符
      
import re

m = re.fullmatch(r'\w+',"hello1973")

print(m.group())

 

import re

#驗證密碼是否符合規範---只含字母和數字 m
= re.fullmatch(r'[0-9A-Za-z]+', "hello1973") print(m.group()) hello1973

 

 
    re.match(pattern,string,flags=0)
      功能:匹配某個目標字符串開始位置
      參數:pattern 正則
      string 目標字符串
      返回值:匹配內容match object
 
    
import re

m = re.match(r'[A-Z]\w*',"Hello1973")

print(m.group())



Hello1973

 

 
    re.search(pattern,string,flags=0)
      功能:匹配目標字符串第一個符合內容
      參數:pattern 正則
      string 目標字符串
      返回值:匹配內容match object
 
    
import re

m = re.search(r'\S+', "好\n嗨 喲")

print(m.group())




好

 

 
    compile對象屬性
      【1】 flags : flags值--------注:不要跟參數flags混淆了
      【2】 pattern : 正則表達式
      【3】 groups : 子組數量
      【4】 groupindex : 捕獲組名與組序號的字典
 
  2.match對象的屬性方法
    
    1. 屬性變量
      pos 匹配的目標字符串開始位置
      endpos 匹配的目標字符串結束位置
      re 正則表達式
      string 目標字符串
      lastgroup 最後一組的名稱
      lastindex 最後一組的序號
 
 
  
import re

pattern = r"(ab)cd(?P<pig>ef)"

regex = re.compile(pattern)

# 生成match對象
obj = regex.search("abcdefghi", pos=0, endpos=7)

# 演示match對象屬性變量
print(obj.pos)
print(obj.endpos)
print(obj.re)
print(obj.string)
print(obj.lastgroup)
print(obj.lastindex)




0
7
re.compile('(ab)cd(?P<pig>ef)')
abcdefghi
pig
2

 

 
    2. 屬性方法
      span() 獲取匹配內容的起止位置
      start() 獲取匹配內容的開始位置
      end() 獲取匹配內容的結束位置
      groupdict() 獲取捕獲組字典,組名爲鍵,對應內容爲值
      groups() 獲取子組對應內容
      group(n = 0)
        功能:獲取match對象匹配內容
        參數:默認爲0表示獲取整個match對象內容,若是是序列號或者組名則表示獲取對應子組內容
        返回值:匹配字符串
 
    
import re

pattern = r"(ab)cd(?P<pig>ef)"

regex = re.compile(pattern)

# 生成match對象
obj = regex.search("abcdefghi", pos=0, endpos=7)

# 演示match對象方法
print(obj.start())
print(obj.end())
print(obj.span())
print(obj.groupdict())
print(obj.groups())
print(obj.group())#獲取整個match對象內容
print(obj.group(1))#獲取第一子組內容
print(obj.group('pig'))#獲取組名爲pig的子組內容




0
6
(0, 6)
{'pig': 'ef'}
('ab', 'ef')
abcdef
ab
ef

 

      
 
  3.flags參數
    
    1. 使用函數:re模塊調用的匹配函數。如:re.compile,re.findall,re.search....
 
    2.做用:擴展豐富正則表達式的匹配功能
    
    3.經常使用flag
      A == ASCII 元字符只能匹配ascii碼
 
      
import re

s = """hello world
你好,北京
"""
# 只能匹配ASCII碼字符
regex = re.compile(r'\w+', flags=re.A)

l = regex.findall(s)

print(l)


['Hello', 'world']

 

 
      I == IGNORECASE 匹配忽略字母大小寫
 
import re

s = """Hello world
你好,北京
"""
# 匹配時忽略字母大小寫
regex = re.compile(r'[A-Z]+', flags=re.I)

l = regex.findall(s)

print(l)





['Hello', 'world']

 

 
      S == DOTALL 使 . 能夠匹配換行
 
import re

s = """Hello world
你好,北京
"""
# 匹配時不能夠匹配換行
regex = re.compile(r'.+')

l = regex.findall(s)

print(l)




['Hello world', '你好,北京']

 

import re

s = """Hello world
你好,北京
"""
# 匹配時能夠匹配換行
regex = re.compile(r'.+',flags=re.S)

l = regex.findall(s)

print(l)



['Hello world\n你好,北京\n']

 

 
      M == MULTILINE 使 ^ $能夠匹配每一行的開頭結尾位置
 
  
      
import re

s = """Hello world
你好,北京
"""
# 匹配每一行的開頭或者結尾
regex = re.compile(r'world$',flags=re.M)

l = regex.findall(s)

print(l)






['world']

 

 
      X == VERBOSE 爲正則添加註釋
 
 
import re

s = """Hello world
你好,北京
"""
# 匹配每一行的開頭或者結尾

pattern = r"""\w+  # 第一部分
\s+   #  第二部分
\w+   #  第三部分
"""
regex = re.compile(pattern,flags=re.X)

l = regex.findall(s)

print(l)




['Hello world']

 

 
 
 
    4. 使用多個flag
      方法:使用按位或鏈接
        e.g. : flags = re.I | re.A
 
 
代碼實例:
 
"""
    匹配每段IP地址,要求:
        根據輸入的每段首單詞,獲取IP地址
"""


import re
import sys

port = sys.argv[1]

f = open('1.txt')

# 找到port段落
while True:
    data = ''
    for line in f:
        if line != '\n':  # 不是空行
            data += line
        else:
            break
    if not data: # 文件結尾
        print("Not Found the %s"%port)
        break

    # 匹配字符串首個單詞
    key_word = re.match(r'\S+',data).group()
    if port == key_word:
        # 匹配目標內容
        # pattern = r"[0-9a-f]{4}\.[0-9a-f]{4}\.[0-9a-f]{4}"
        pattern=r"(\d{1,3}\.){3}\d{1,3}/\d+|Unknow"
        try:
            address = re.search(pattern,data).group()
            print(address)
        except:
            print("No address")
        break
相關文章
相關標籤/搜索