在json中替换问题

时间:2017-09-07 06:21:20

标签: c# .net json regex

我正在尝试替换我拥有的字符串

\\/Date(1430370000000+0530)\\/

\/Date(1430370000000+0530)\/

代码:

 string str = "\\/Date(1430370000000+0530)\\/";
 str = str.Replace(@"\","\\");           
 Console.WriteLine(str);

See here the code running environment, click here

我得到的输出是:

\/Date(1430370000000+0530)\/

但是我们在JSON属性中传递了值。

该值会自动转换为低于值

/Date(1430370000000+0530)\\/

但我期待与之前相同的价值

\/Date(1430370000000+0530)\/

0 个答案:

没有答案