码迷,mamicode.com
首页 > Windows程序 > 详细

C#中,使用正式表达式匹配获取所需数据

时间:2016-03-24 18:22:54      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:

.NET中,使用正式表达式匹配获取所需数据

 

需求:获取一串字符串中,正则匹配出需要的数据。

例如以下字符串:

string temp ="ErrorCode:-1,Message:{"UserId" : "1000","userName" : "ZhangSan"}";

我需要获得“-1”和“{"UserId" : "1000","userName" : "ZhangSan"}”;

 

接下来,就使用正则去匹配:

using System.Text.RegularExpressions;

string temp = "ErrorCode:-1,Message:{\"UserId\" : \"1000\",\"userName\" : \"ZhangSan\"}";
Regex reg = new Regex("ErrorCode:(?<key1>.*?),Message:{(?<key2>.*?)}");
Match match = reg.Match(temp);
string tempStr = match.Groups["key1"].Value + "--" + match.Groups["key2"].Value;

MessageBox.Show(tempStr);

技术分享

 

这时候tempStr得到的是”-1--{"UserId" : "1000","userName" : "ZhangSan"}“

C#中,使用正式表达式匹配获取所需数据

标签:

原文地址:http://www.cnblogs.com/gilbert/p/5316424.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!