码迷,mamicode.com
首页 > 其他好文 > 详细

xml解析标签

时间:2014-08-27 10:51:37      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   art   div   log   sp   c   

 1         //获取两个标签之间的值
 2         private static string GetStr(string message, string strStart, string strEnd)
 3         {
 4             int start = 0;
 5             int end = 0;
 6             start = message.IndexOf(strStart);
 7             if (start < 0) return "";
 8             end = message.Substring(start + strStart.Length).IndexOf(strEnd);
 9             if (end >= 0)
10             {
11                 return message.Substring(start + strStart.Length, end);
12             }
13             return "";
14         }

 

xml解析标签

标签:style   blog   color   ar   art   div   log   sp   c   

原文地址:http://www.cnblogs.com/qiu2013/p/3938838.html

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