Java的indexof函数查找范围在哪

avatar
作者
筋斗云
阅读量:0

在Java中,indexOf函数的查找范围是整个字符串。如果字符串中有多个子字符串与指定的字符串匹配,indexOf将返回第一个匹配项的索引。如果没有找到匹配项,则返回-1。

以下是一个简单的示例:

public class Main {     public static void main(String[] args) {         String str = "Hello, world!";         int index = str.indexOf("world");         System.out.println("Index of 'world': " + index);  // 输出:Index of 'world': 7     } } 

在这个例子中,indexOf函数在字符串"Hello, world!"中查找子字符串"world",并返回其索引7。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!