I have a string in Python like this:
u'\u200cHealth & Fitness'
How can i remove the
\u200c
part from the string ?
You can encode it into ascii
and ignore errors:
u'\u200cHealth & Fitness'.encode('ascii', 'ignore')
Output:
'Health & Fitness'