如何取得双引号内的字符串(C#)
时间:2011-02-16 来源:禾火平
例如string words="hello\"world\"";要获取到"world"
using System.Text.RegularExpressions;
string words = "hello\"world\"";
Regex regex = new Regex("\"[^\"]*\"");
string result = regex.Match(words).Value.Replace("\"", "");
相关阅读 更多 +