对于一个给定的source字符串和一个target字符串,你应该在source字符串中找出target出现的第一个位置(从0开始)
代码如下:
int h = 0;
String source = "hahaabc";
String target = "abc";
if (!source.contains(target)){
h = -1;
}else{
// 证明包含这些字符串 位置从0开始
h = source.indexOf(target) + 1;
}
Toast.makeText(this, "哈哈" + h, Toast.LENGTH_LONG).show();