////// 截取字符串中两个字符串中的字符串 /// /// 字符串 /// 开始字符串 /// 结束字符串 ///protected string CutString(string str, string startStr, string endStr) { int begin, end; begin = str.IndexOf(startStr, 0) + startStr.Length; //开始位置 end = str.IndexOf(endStr, begin); //结束位置 return str.Substring(begin, end - begin); //取搜索的条数,用结束的位置-开始的位置,并返回 }