如何从字符串中删除引号?

时间:2016-09-19 09:27:00

标签: c# asp.net

我有一个方法返回的字符串值,它是在引号中。例如 '59'。现在我想删除引号并输出 59 。我该怎么做?

  

'59' - > 59

2 个答案:

答案 0 :(得分:0)

我认为最简单的方法是用空字符串替换'

string Quoted = "'59'";
string UnQuoted = Quoted.Replace("'", "");

答案 1 :(得分:0)

另一种更通用的解决方案,用于从字符串中提取数值:

        string str = "'59'";
        int num = int.Parse(Regex.Match(str, @"\d+").Value); //59