Java String indexOf(String substr)方法与示例
字符串indexOf(Stringsubstr)方法
indexOf(Stringsubstr)是Java中的String方法,用于获取字符串中指定子字符串的索引。
如果字符串中存在子字符串,则返回第一次出现的索引,如果字符串中不存在子字符串,则返回-1。
语法:
int str_object.indexOf(String substr);
这里,
str_object是主字符串的对象,我们必须在其中找到给定子字符串的索引。
substr是字符串中要在字符串中找到的部分。
它接受子字符串并返回其首次出现的索引;如果字符串中不存在子字符串,则返回-1。
示例
Input:
String str = "NHOOO"
Function call:
str.indexOf("Help")
Output:
7
Input:
String str = "NHOOO"
Function call:
str.indexOf("HELP)
Output:
-1Java代码演示String.indexOf()方法的示例
public class Main
{
public static void main(String[] args) {
String str = "NHOOO";
String substr = "";
int index;
substr = "Help";
index = str.indexOf(substr);
if(index != -1)
System.out.println(substr + " is found at " + index + " position.");
else
System.out.println(substr + " does not found.");
substr = "lude";
index = str.indexOf(substr);
if(index != -1)
System.out.println(substr + " is found at " + index + " position.");
else
System.out.println(substr + " does not found.");
substr = "HELP";
index = str.indexOf(substr);
if(index != -1)
System.out.println(substr + " is found at " + index + " position.");
else
System.out.println(substr + " does not found.");
}
}输出结果
Help is found at 7 position. lude is found at 3 position. HELP does not found.
热门推荐
8 甄嬛传祝福语简短
10 中考物理加油祝福语简短
11 潮汕话新人祝福语简短
12 企业国庆问候祝福语简短
13 经典新婚祝福语英文简短
14 祝福语简短大全微信
15 双节祝福语简短英文
16 历史老师蛋糕祝福语简短
17 PMP考试祝福语简短励志
18 新房落成的简短祝福语