正则 {} |

Posted gxsmm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正则 {} | 相关的知识,希望对你有一定的参考价值。

import re

# line = ‘ahhuuhhaaahhhhang123‘
#line = ‘ahuuuhuuu‘

# 需要获取h和h之间,需要包含特定数量字符的子串
# 使用 + h和h之间至少要有一个字符

# {} 限定它前面出现的那个东西的出现次数

# match_res = re.search(‘h.{3,6}h‘, line)
# if match_res:
#     print(match_res)
#     print(match_res.group(0))
#     # print(match_res.group(1))
#     # print(match_res.group(2))
#     print(‘ojbk‘)
# else:
#     print(‘no ojbk‘)
#
# match_res = re.search(‘h.+?h‘, line)
# if match_res:
#     print(match_res)
#     print(match_res.group(0))
#     # print(match_res.group(1))
#     # print(match_res.group(2))
#     print(‘ojbk‘)
# else:
#     print(‘no ojbk‘)



#
# line = ‘sss127aaaanbsss127‘
#
# # 匹配sss127 或者 aaa
# # 或者
# match_res = re.search(‘(sss127|aaa)‘, line)
# if match_res:
#     print(match_res)
#     print(match_res.group(0))
#     # print(match_res.group(1))
#     # print(match_res.group(2))
#     print(‘ojbk‘)
# else:
#     print(‘no ojbk‘)

# [] 匹配中括号内部的任意一个字符
line = ‘sss127aaaanbsss127‘
match_res = re.search(‘([27s1]+)‘, line)
if match_res:
    print(match_res)
    print(match_res.group(0))
    # print(match_res.group(1))
    # print(match_res.group(2))
    print(‘ojbk‘)
else:
    print(‘no ojbk‘)

  

以上是关于正则 {} | 的主要内容,如果未能解决你的问题,请参考以下文章

markdown 正则表达式模式片段

正则表达式匹配特定的 URL 片段而不是所有其他 URL 可能性

asp.net 使用正则表达式验证包含打开/关闭括号片段的属性字符串

循环通过 python 正则表达式匹配

js正则验证,邮箱,身份证

攻破难啃的骨头-正则表达式(转)