×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Java String Programs - Find word in java SMITH NUMBERS JAVA
Java String Programs - Replace word in java - Java
6506    Arnab De    14/03/2018

Write a program in java to find out the frequency of words in a sentence.


It is a simple java string program. Just split the sentence into a string array by split() method and create a resultent empty string. Now travel the string array and rejoin the stentence by replaceing the specefied word. Here we use the for each loop which is introduce in jdk1.5 version.

softetechnologies


import java.util.*;
class ReplaceWord
{
    public static void main(String []args)
    {
        Scanner sc=new Scanner(System.in);
        System.out.print("Enter a String:");
        String str=sc.nextLine();
        System.out.print("Enter the word you want to search : ");
        String searchword=sc.nextLine();
        System.out.print("Enter the new word : ");
        String newword=sc.nextLine();
        String res="";
        String []words=str.split(" "); //split the sentence into words
        for (String word : words) {
            if(word.equalsIgnoreCase(searchword))
            {
                res += newword + " ";
            }
            else
            {
                res += word + " ";
            }
        }
        System.out.println("New Sentence will be " + res.trim());
    }
}

softetechnologies
Java String Programs - Find word in java SMITH NUMBERS JAVA
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
07/02/2023: where wil java after 10 years
By: kjn [hoh]
Rabindranath Tagore
Don't limit a child to your own learning, for he was born in another time.
Rabindranath Tagore
2997
80.79
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     54121
25/06/2018     45120
01/01/2018     43671
28/06/2017     41206
02/08/2017     40220
01/08/2017     34265
06/07/2017     34064
15/05/2017     33304
11/09/2018     30321
14/07/2017     29830
softetechnologies