亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java如何查找指定字符

小億
101
2024-04-12 12:27:56
欄目: 編程語言

在Java中,可以使用字符串類的indexOf()方法來查找指定字符在字符串中的位置。

例如,下面的代碼示例演示了如何查找字符串中第一個出現的指定字符的位置:

String str = "Hello, World!";
char ch = 'o';
int index = str.indexOf(ch);

if (index != -1) {
    System.out.println("Character '" + ch + "' found at index " + index);
} else {
    System.out.println("Character '" + ch + "' not found in the string.");
}

在上面的示例中,我們定義了一個字符串str和一個字符ch,然后使用indexOf()方法來查找字符ch在字符串str中第一次出現的位置。如果找到了指定字符,就會返回該字符在字符串中的索引位置,否則返回-1。

除了使用字符作為參數,indexOf()方法還可以接受字符串作為參數,用來查找字符串中第一次出現的子字符串的位置。

String str = "Hello, World!";
String substr = "World";
int index = str.indexOf(substr);

if (index != -1) {
    System.out.println("Substring '" + substr + "' found at index " + index);
} else {
    System.out.println("Substring '" + substr + "' not found in the string.");
}

上面的示例演示了如何查找字符串中第一次出現的子字符串的位置。如果找到了子字符串,就會返回該子字符串在字符串中的索引位置,否則返回-1。

0
遂昌县| 德钦县| 东城区| 清徐县| 徐州市| 琼中| 刚察县| 海丰县| 德州市| 五常市| 桃江县| 彰化县| 栾川县| 凯里市| 通河县| 洪泽县| 年辖:市辖区| 普格县| 平潭县| 南通市| 固镇县| 鄱阳县| 金堂县| 项城市| 昌图县| 阿拉善右旗| 成武县| 昭通市| 依兰县| 江川县| 滨州市| 大厂| 新余市| 大名县| 福清市| 资阳市| 昌黎县| 易门县| 台山市| 安国市| 昆山市|