I have this string:
irak|"iraq"|"زلزال العراق"|"زلزال ايران"|"هزة ارضية"|"هزة ارضية ايران"|"زلزله"|"زلزله ايران"|"زمين لرزه ايران"|"iran news"|"iran quake"|"earthquake"|"Iran-Iraq border earthquake"
And the thing I want is to remove all the characters except English alphabets and numbers. Like for above string the result should be:
irak|iraq|iran news|iran quake|earthquake|Iran-Iraq border earthquake
And this should be done using regex in python.