一个字符串中带有双引号,如何取得双引号内的字符串(C#)

2024-12-29 15:33:10
推荐回答(2个)
回答1:

可以用Split()方法将字符串分解成数组,然后在数组中读出就可以啦

回答2:

使用正则表达式
string words = "hello\"world\"";
Regex regex = new Regex("\"[^\"]*\"");
string result = regex.Match(words).Value.Replace("\"", "");