在字符串中查找某一字符串的出现位置 – stringIndex
查找指定字符串在目标字符串中的位置。从0开始计算,即第一个字符的位置为0
定义
int stringIndex(string str1, int start, string str2);
参数
- str1:
要检索的字符串
- start:
起始位置,从0开始。
- str2:
被检索的字符串
返回值
要查找的字符串的起始位置。如果没找到,返回 -1。
示例
// 在字符串“text123”中查找“x”的出现位置,并由整数控件num4显示,位置会返回2
num4.val = stringIndex("text123",0,"x");
// 备注:如果找到,返回位置;否则返回 -1。