Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个大字符串,里面有几个类似的东西。我想找到一个字符串的一部分,但它的一部分是无关紧要的。
例如:“0”等“11”“0”等“3”“0”等“6”“0”等“600”“0”
我想找到 'blah"..." ' 其中 '...' 是数字,我可以得到 '...' 的值
有没有简单的方法可以做到这一点?
>>> import re >>> re.findall(r'blah"(\d+)"','"0" blah"11" "0" blah"3" "0" blah"6" "0" blah"600" "0"') ['11', '3', '6', '600']