Python Python 正则 取中括号值

str = '[111]dsfdsd[33333]'

pattern = r"(\[.*?\])";
                    guid = re.findall(pattern,str ,re.M)
                    if(len(guid)>0):
                        guid = guid[0]
                        guid = guid.replace('[','').replace(']','')

你可能感兴趣的:(python)