可以用Split()方法将字符串分解成数组,然后在数组中读出就可以啦
使用正则表达式string words = "hello\"world\""; Regex regex = new Regex("\"[^\"]*\""); string result = regex.Match(words).Value.Replace("\"", "");