91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

Java的indexof有哪些替代方法

小樊
82
2024-07-11 21:13:28
欄目: 編程語言

  1. 使用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");
}
  1. 使用String的charAt方法和循環來實現查找功能:
String str = "Hello World";
char target = 'W';
int index = -1;
for(int i=0; i<str.length(); i++){
    if(str.charAt(i) == target){
        index = i;
        break;
    }
}
System.out.println("Index of 'W': " + index);
  1. 使用String的toCharArray方法和循環來實現查找功能:
String str = "Hello World";
char[] charArray = str.toCharArray();
char target = 'W';
int index = -1;
for(int i=0; i<charArray.length; i++){
    if(charArray[i] == target){
        index = i;
        break;
    }
}
System.out.println("Index of 'W': " + index);

0
仪陇县| 乌拉特后旗| 黄平县| 大洼县| 南昌市| 中超| 德昌县| 越西县| 常山县| 肃北| 紫金县| 临猗县| 德昌县| 比如县| 九江市| 汉源县| 金门县| 花莲县| 稷山县| 金秀| 凉山| 和林格尔县| 漳州市| 德庆县| 平南县| 确山县| 七台河市| 兴宁市| 项城市| 颍上县| 文成县| 庆云县| 绍兴县| 井陉县| 桃江县| 普陀区| 惠来县| 南皮县| 昭平县| 宜兰市| 岢岚县|