中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
绍兴县| 安阳县| 四川省| 灌阳县| 余干县| 平乡县| 璧山县| 望都县| 永寿县| 白山市| 枣庄市| 康马县| 杂多县| 临洮县| 和静县| 石景山区| 江陵县| 凯里市| 盐边县| 崇信县| 高平市| 洛扎县| 丽江市| 江门市| 漠河县| 鄂尔多斯市| 腾冲县| 富锦市| 三原县| 宁武县| 阿勒泰市| 延津县| 朝阳区| 广元市| 阿克陶县| 成都市| 同德县| 张家港市| 丘北县| 巍山| 广宗县|