怎么获取字符串的索引
发布网友
发布时间:2022-04-23 04:31
我来回答
共3个回答
热心网友
时间:2022-05-03 03:28
string str="abcdefg";
int index=str.indexOf("de");
这是获取字符串“de”在str中的索引。
index结果是3
热心网友
时间:2022-05-03 04:46
朋友,把问题说的详细点吧,我想回答!
你是想知道这个字符串在另一个字符串中的索引吗?
//要查找的字符串
string str1 = "123";
//查找元字符串
string str2 = "abc123123456";
//要查找的字符串在查找元字符串中第一次出现的索引
int intFirstIndex = str2.IndexOf(str1);
//要查找的字符串在查找元字符串中最后一次出现的索引
int intLastIndex = str2.LastIndexOf(str1);
热心网友
时间:2022-05-03 06:21
string a="abc";
a.IndexOf("bc")