I got a string that look like this
'deFG4209268392612927005702000004809357'
there are unit seperator code inside that string, in vs code it look like this
and sublime text, it look like this
I want to remove anything look like that in the string. what the proper regex for that ?
3
/[u0000-u001Fu007F-u009FxADu061Cu200Bu200Eu200Fu202A-u202Eu2066-u2069]/g
. It covers all the standard unit operators being used.