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;
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。