HomeJavaJava Program to Find the Frequency of Characters in a String

Java Program to Find the Frequency of Characters in a String

In this Java program, you’ll learn how to Find the Frequency of Characters in a String using the Java programming language

How Find the Frequency of Characters in a String using JAVA? 

Example 1: 

RUN CODE SNIPPET
public class Main { 
    public static void main(String[] args) { 
        String str = "This website is awesome."; 
        char ch = 'e'; 
        int frequency = 0; 
        for(int i = 0; i < str.length(); i++) { 
            if(ch == str.charAt(i)) { 
                ++frequency; 
            } 
        } 
        System.out.println("Frequency of " + ch + " = " + frequency); 
    } 
}

OUTPUT 

Frequency of e = 4

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

Java is a popular programming language that is used to develop a wide range of applications. If you are a...
  • Java
  • March 6, 2023
Java is a programming language and computing platform that is used to create various types of applications. It is used...
  • Java
  • March 6, 2023
In this post, you’ll learn how to download and install JUnit in Eclipse so that you can use in your...
  • Java
  • October 9, 2022