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

溫馨提示×

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
长治县| 江孜县| 磐石市| 莱阳市| 三明市| 安图县| 盐山县| 石泉县| 阆中市| 呼玛县| 乐山市| 海宁市| 河南省| 宁陕县| 南郑县| 交城县| 同江市| 太和县| 临清市| 普宁市| 宝鸡市| 周至县| 资阳市| 合川市| 正阳县| 淮滨县| 上高县| 山阴县| 天镇县| 清徐县| 阳西县| 抚顺县| 读书| 拉萨市| 永城市| 通许县| 西盟| 峡江县| 鹤庆县| 当涂县| 康乐县|