编程语言
首页 > 编程语言> > python 使用正则表达式截取字符串

python 使用正则表达式截取字符串

作者:互联网

假设字符串“a= {};”
要截取包含花括号在内的内容

import re
pattern= r= "= (.+?);"
match_bet_list=eval(re.findall(pattern,match_bet_list,re.M)[0])

re.M表示在字符串每行中截取

https://blog.csdn.net/bang152101/article/details/89284249

标签:re,python,pattern,截取,list,正则表达式,字符串,match
来源: https://www.cnblogs.com/FrostyForest/p/16609992.html