我有以下由 bs4,python 生成的结构。
['Y10765227', '9884877926, 9283183326', '', 'Dealer', 'Rgmuthu']
['L10038779', '9551154555', ',', ',']
['R10831945', '9150000747, 9282109134, 9043728565', ',', ',']
['B10750123', '9952946340', '', 'Dealer', 'Bala']
['R10763559', '9841280752, 9884797013', '', 'Dealer', 'Senthil']
我想撕掉角色,我应该得到类似下面的东西
9884877926, 9283183326, Dealer, Rgmuthu
9551154555
9150000747, 9282109134, 9043728565
9952946340 , Dealer, Bala
9841280752, 9884797013, Dealer, Senthil
我在用 print re.findall("'([a-zA-Z0-9,\s]*)'", eachproperty['onclick'])
所以基本上我想删除开头的“[]”和“''”和“”以及随机ID。
更新
onclick="try{appendPropertyPosition(this,'Y10765227','9884877926, 9283183326','','Dealer','Rgmuthu');jsb9onUnloadTracking();jsevt.stopBubble(event);}catch(e){};"
所以我从这个 onclick 属性中抓取来获取上述数据。