1
我有一個這樣的產品成分的字符串:設置正則表達式一個複雜的字符串
text = 'Pork and beef, water, salt (1,7%), spices (white pepper, nutmeg, coriander, cardamom), stabilizer (E450), glucose, antioxidant (E316), a preservative (E250), flavorings'
我想從它檢測到的所有文本(成分),使得它看起來應該是這樣。
ingredientsList= ['Pork and beef', 'salt', 'spices', 'white pepper', 'nutmeg', 'coriander', 'cardamom', 'stabilizer', 'glucose', 'antioxidant', 'preservative', 'flavorings']
我使用這裏的正則表達式當前是:
ingredients = re.findall(r'\([^()]*\)|([^\W\d]+(?:\s+[^\W\d]+)*)', text)
但它不提供在支架上的文字。我只是不想包括代碼和百分比,但想要括號內的所有成分。我應該在這裏做什麼?提前致謝。