正则表达式 python

正则表达式 python_第1张图片

 

  1. 'r:Python 中意义:

            r:Python中字符串前面加上 r 表示原生字符串(rawstring)

            不使用r,那么匹配时候需要4个反斜杠,正则需要转化一次,python解释器需要转化一次

     2. Python re 正则 替换 括号内的内容,

pattern=re.compile(r'\((.*)\)')
str_origin='ELTIMA Virtual Serial Port (COM10->COM9)'
str=pattern.search(str_origin)
print('str_origin-group(0):',str.group(0))

# 打印结果:
str_origin-group(0): (COM10->COM9)
 

你可能感兴趣的:(python,正则)