在python中获取curl括号内的字符串

时间:2016-06-20 20:56:23

标签: python string python-2.7

假设我有一个像

这样的字符串
{"", "b", "c"}, // we are here 

我想提取它的{"", "b", "c"}和/或"", "b", "c"部分。有没有简单的处方呢?

1 个答案:

答案 0 :(得分:0)

您可以使用正则表达式 - re.search

import re

s = '{"", "b", "c"}, // we are here'
m = re.search(r'{.*}', s)
print(m.group(0))
#'{"", "b", "c"}'

{.*}匹配花括号和大括号内的所有内容。