zoukankan      html  css  js  c++  java
  • 正则表达式(Python)

    课题

    1. 使用正则表达式匹配字符串
      使用正则表达式 "d{3}-(d{4})-d{2}" 匹配字符串 "123-4567-89"
      返回匹配结果:’"123-4567-89" 以及 "4567"
    2. 使用正则表达式替换字符串(模式)
      使用正则表达式 "(d+)-(d+)-(d+)" 匹配字符串 "123-4567-89"
      使用模式字符串 "$3-$1-$2" 替换匹配结果,返回结果 "89-123-4567"。
    3. 使用正则表达式替换字符串(回调)
      使用正则表达式 "d+" 匹配字符串 "123-4567-89"
      将匹配结果即三个数字串全部翻转过来,返回结果 "321-7654-98"。
    4. 使用正则表达式分割字符串
      使用正则表达式 "%(begin|next|end)%" 分割字符串"%begin%hello%next%world%end%"
      返回正则表达式分隔符之间的两个字符串 "hello" 和 "world"。

    Python

    import re
    
    s = '123-4567-89,987-6543-21'
    r = re.compile(r'd{3}-(d{4})-d{2}')
    i = 0
    pos = 0
    m = r.search(s)
    while m:
        if i == 0:
            print("Found matches:")
        for j in range(0, len(m.groups()) + 1):
            print(f"group {i},{j} : {m[j]}")
        pos = m.end(0)
        i += 1
        m = r.search(s, pos)
    
    print(re.sub(r'(d+)-(d+)-(d+)', r'3-1-2', s))
    
    # https://stackoverflow.com/questions/18737863/passing-a-function-to-re-sub-in-python
    # https://stackoverflow.com/questions/931092/reverse-a-string-in-python
    print(re.sub(r'd+', lambda x: x.group()[::-1], s))
    
    print(re.split('%(?:begin|next|end)%', '%begin%hello%next%world%end%'))
    
    '''
    Found matches:
    group 0,0 : 123-4567-89
    group 0,1 : 4567
    group 1,0 : 987-6543-21
    group 1,1 : 6543
    89-123-4567,21-987-6543
    321-7654-98,789-3456-12
    ['', 'hello', 'world', '']
    '''
    
  • 相关阅读:
    PYTHON简介
    zabbix4.0搭建2
    zabbix4.0搭建1
    zabbix监控
    Linux中vim编辑命令
    零基础逆向工程25_C++_02_类的成员权限_虚函数_模板
    零基础逆向工程24_C++_01_类_this指针_继承本质_多层继承
    零基础逆向工程23_PE结构07_重定位表_IAT表(待补充)
    零基础逆向工程22_PE结构06_导入表
    零基础逆向工程21_PE结构05_数据目录表_导出表
  • 原文地址:https://www.cnblogs.com/zwvista/p/9505577.html
Copyright © 2011-2022 走看看