- 积分
- 352
- 在线时间
- 183 小时
- 主题
- 22
- 注册时间
- 2016-9-10
- 帖子
- 142
- 最后登录
- 2022-9-21
- 帖子
- 142
- 软币
- 1717
- 在线时间
- 183 小时
- 注册时间
- 2016-9-10
|
取到数据,且分为时间,地点,备注显示<DATETIME>2016-08-03 07:07</DATETIME><PLACE>Hong Kong</PLACE><INFO>订单已处理: 为 UPS 准备就绪</INFO>
string a = "<DATETIME>2016-08-03 07:07</DATETIME><PLACE>Hong Kong</PLACE><INFO>订单已处理: 为 UPS 准备就绪</INFO>";
string RegexStr = @"<[\s\S]*?>";
string b = Regex.Replace(a, RegexStr, "\n");
List<string> c = b.Trim().Split('\n').ToList();
string a1 = c[0];
string a2 = c[2];
string a3 = c[4];
Console.WriteLine(a1);
Console.WriteLine(a2);
Console.WriteLine(a3);
Console.WriteLine(a.Contains("DATETIME"));
Console.Read(); |
|