我有一個list
:使用正則表達式來刪除內容在括號中的python
['14147618', '(100%)', '6137776', '(43%)', '5943229', '(42%)', '2066613', '(14%)', 'TOTAL']
也爲作爲字符串'14147618 (100%) 6137776 (43%) 5943229 (42%) 2066613 (14%) TOTAL\n'
使用正則表達式,我怎麼回:
['14147618', '6137776, '5943229', 2066613']
ü可以告訴我,如果A =''14147618(100%)6137776 (43%)5943229(42%)2066613(14%)TOTAL \ n'' 如何獲得'['14147618','6137776,'5943229',2066613']'? – VeilEclipse
@VeilEclipse你可以使用'a.split()' – thefourtheye
@VeilEclipse相同的程序請檢查更新的答案。 – thefourtheye