I'm trying to remove \' from an string
string temp = "[['90\'','','Delay in match Cédric Kanté (Sochaux) because of an injury.','away']]";
temp = Regex.Replace(temp, @"\\'", ""); >> still have ' mark [['90'','','...']
I've tried many ways but failed.
Thanks