程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#中,使用正式表達式匹配獲取所需數據,

C#中,使用正式表達式匹配獲取所需數據,

編輯:C#入門知識

C#中,使用正式表達式匹配獲取所需數據,


.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"}“

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved