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

溫馨提示×

java如何查找字符串中指定字符個數

小億
123
2024-09-26 03:29:04
欄目: 編程語言

在Java中,你可以使用以下方法來查找字符串中指定字符的個數:

public class CountCharacter {
    public static void main(String[] args) {
        String str = "hello world";
        char ch = 'l';
        int count = countCharacterOccurrences(str, ch);
        System.out.println("The character '" + ch + "' occurs " + count + " times in the string \"" + str + "\"");
    }

    public static int countCharacterOccurrences(String str, char ch) {
        int count = 0;
        for (int i = 0; i < str.length(); i++) {
            if (str.charAt(i) == ch) {
                count++;
            }
        }
        return count;
    }
}

在這個例子中,我們定義了一個名為countCharacterOccurrences的方法,它接受一個字符串str和一個字符ch作為參數。這個方法遍歷整個字符串,并在每次找到目標字符時遞增計數器。最后,該方法返回計數器的值。

0
南平市| 滨州市| 礼泉县| 鞍山市| 锡林郭勒盟| 新泰市| 东城区| 金沙县| 鹤岗市| 兴业县| 赤城县| 海南省| 白城市| 和硕县| 桐庐县| 阳江市| 精河县| 灯塔市| 嵊州市| 锡林浩特市| 屏山县| 疏勒县| 府谷县| 房产| 明星| 玛纳斯县| 岫岩| 邛崃市| 临高县| 郑州市| 东阳市| 台东县| 乡城县| 肥西县| 屏边| 颍上县| 马公市| 祁阳县| 伊金霍洛旗| 泊头市| 芜湖县|