string s = "我爱北京天安门和长城";
string s1 = "北京";
string s2 = "和";
int i = s.IndexOf(s1) + s1.Length+1;
int j = s.IndexOf(s2);
string str = s.Substring(i, j - i);
// 得到的字符串“天安”
时间: 2024-10-13 11:34:04
string s = "我爱北京天安门和长城";
string s1 = "北京";
string s2 = "和";
int i = s.IndexOf(s1) + s1.Length+1;
int j = s.IndexOf(s2);
string str = s.Substring(i, j - i);
// 得到的字符串“天安”