C#截取指定字符串中的内容
string tt="字符串字符串字符串字符串字符串字符串字符串"; int istart = tt.IndexOf("<location>"); //获取开始字符串所在的索引 int iend = tt.LastIndexOf("</location>"); //获取结束字符串所在的索引 string subStr = tt.Substring(istart + 10, iend - (istart + 10)); //截取 return tt;
string tt="字符串字符串字符串字符串字符串字符串字符串"; int istart = tt.IndexOf("<location>"); //获取开始字符串所在的索引 int iend = tt.LastIndexOf("</location>"); //获取结束字符串所在的索引 string subStr = tt.Substring(istart + 10, iend - (istart + 10)); //截取 return tt;