C# 正则表达式获取json字符串中的键值
2021-01-20 19:12
标签:reac 正则表达 返回 字符 表达 附加 bsp ase 正则 C# 正则表达式获取json字符串中的键值 标签:reac 正则表达 返回 字符 表达 附加 bsp ase 正则 原文地址:https://www.cnblogs.com/johsan/p/12121194.html
//要注意这个 .*? 的写法, 附加的问号是表示尽可能短匹配,这很重要,否则返回最长匹配
string patttern = @"([).*?(])";
Match match = Regex.Match(jsonString, patttern, RegexOptions.IgnoreCase);
List
MatchCollection matches = Regex.Matches(jsonString, patttern, RegexOptions.IgnoreCase);
foreach (Match m in matches)
{
lst.Add(m.Value);
}
文章标题:C# 正则表达式获取json字符串中的键值
文章链接:http://soscw.com/index.php/essay/44666.html