6
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[Java]文字列に含まれる特定の文字の個数を数えたい

Last updated at Posted at 2021-04-04

はじめに

文字列"hogetext"tを いくつ含んでいるのか?という問題を例として、
文字列に含まれる文字の個数を数えてみました。

方法

次のような手順で算出しました。

  1. 文字列を1文字ずつ、配列に格納する
  2. 調べたい文字と配列の中身を次々と比較し、一致するかを調べる

ソースコード

        int count = 0;  // 数え上げた結果を格納する
        String str = "hogetext";

        // 文字列を1文字ずつ配列に格納する
        String[] ary = str.split("");
        
        for(int i=0; i<ary.length; i++){
            System.out.print(ary[i] + " ");
        }
        // "h o g e t e x t "が出力される
        
        // 指定した文字の個数を数える、ここではtの個数を数えたい
        for(int i = 0; i<ary.length; i++){
            if ("t".equals(ary[i])){
                count++;
            }
        }
        System.out.println(count);
        // 2が出力される

参考

6
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?