一聚教程网:一个值得你收藏的教程网站

热门教程

C# 取得双引号内的字符串正则

时间:2022-06-25 08:31:31 编辑:袖梨 来源:一聚教程网

个字符串中带有双引号,如何获取到双引号内的字符串呢?

例如string words="hello"world"";要获取到"world"

using system.text.regularexpressions;

string words = "hello"world"";        regex regex = new regex(""[^"]*"");        string result = regex.match(words).value.replace(""", "");

 

热门栏目