\'
文字列から削除しようとしています
string temp = "[['90\'','','Delay in match Cédric Kanté (Sochaux) because of an injury.','away']]";
temp = Regex.Replace(temp, @"\\'", ""); >> still have ' mark [['90'','','...']
私は多くの方法を試しましたが失敗しました。
ありがとう
あなたはできるはずです:.Replace(temp, @"\\", "");
json serilaizersで解析できる形式です。正規表現は必要ありません。
string temp = @"[['90\'','','Delay in match Cédric Kanté (Sochaux) because of an injury.','away']]";
var js = new JavaScriptSerializer();
List<List<string>> listOfList = js.Deserialize<List<List<string>>>(temp);
foreach (var item in listOfList[0])
Console.WriteLine(item);