#字符串拆分和提取 import re #引入re库 str1="[A]A634812534[B]kksduwl" #字符串 # strlist = str1.split(']') # 用点号分割str字符串,并保存到列表 pan = re.compile(r'A.*?B') # 用re.compile分割提取匹配的字符串 m=pan.search(str1) print(m,")))1") print(m.group(0),")))2")
09-13
284
#字符串拆分和提取 import re #引入re库 str1="[A]A634812534[B]kksduwl" #字符串 # strlist = str1.split(']') # 用点号分割str字符串,并保存到列表 pan = re.compile(r'A.*?B') # 用re.compile分割提取匹配的字符串 m=pan.search(str1) print(m,")))1") print(m.group(0),")))2")