Json – Can someone help me to extract tweet text of each id using regex in Python as a list
string = 'ID::ID123 PUBLISHED_TWEET::ABC DEF GHI EMPLOYEE_ID::ID234 TWEET::ABC DEF GHI ID::ID345 TWEET::#@ABC DEF GHI@.[] USER_IDD::ID456 TWEET::google.com 123456789' Required output id = ['ID123', 'ID234', 'ID345', 'ID456'] - I got this output Struggling with the tweet text. I need to Extract tweet…