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 a built in string method or a Regular Expression ?