- 使用String的contains方法结合indexOf方法来实现查找功能:
String str = "Hello World"; if(str.contains("World")){ int index = str.indexOf("World"); System.out.println("Index of 'World': " + index); } else { System.out.println("'World' not found"); }
- 使用String的charAt方法和循环来实现查找功能:
String str = "Hello World"; char target = 'W'; int index = -1; for(int i=0; i
- 使用String的toCharArray方法和循环来实现查找功能:
String str = "Hello World"; char[] charArray = str.toCharArray(); char target = 'W'; int index = -1; for(int i=0; i