This question already has answers here:
Regular expression to return text between parenthesis

(7个答案)


4年前关闭。




我有这样的事情:
a = '2(3.4)'
b = '12(3.5)'

我只想要方括号内的值。我使用了正则表达式,并且可以使用,但是我的老师不允许这样做。我怎样才能做到这一点?

最佳答案

>>> a = '2(3.4)'
>>> a[a.index("(") + 1:a.rindex(")")]
'3.4'

关于python - 如何获取Python字符串中括号内的值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8040795/

10-10 16:13