I want to remove all the escape sequences from the below string which I get from Pokemon API.
"A strange seed was\nplanted on its\nback at birth.\fThe plant sprouts\nand grows with\nthis POKéMON."
I have used Regex.Unescape("A strange seed was\nplanted on its\nback at birth.\fThe plant sprouts\nand grows with\nthis POKéMON.")
but I am getting the same string.
Could you please help me to sort this out?
I do not want to do a string replace as escaping sequence might be different in the next API call.