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(']','')

原文地址:https://www.cnblogs.com/xsmhero/p/2505795.html