I have a string like this:
string ='ArcelorMittal invests =E2=82=AC87m in new process that cuts emissions=20'
I want to take out =E2=82=AC and =20
But when I use,
pattern ='(=\w\w)+'
a=re.split(pattern,string)
it returns
['ArcelorMittal invests ', '=AC', '87m in new process that cuts emissions', '=20', '']