I want to remove All Unicode Characters and Escape Characters like (\n, \t) etc. In short I want just alphanumeric string.
for example :
\u2029My Actual String\u2029
\nMy Actual String\n
I want to fetch just 'My Actual String'. Is there any way to do so either by using any string built in method or Regular Expression ?
Thanks in Advance