×
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
6464    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]
Sri Sri Ramakrishna Paramahamsa
All troubles come to an end when the ego dies
Sri Sri Ramakrishna Paramahamsa
1461
79.49
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     53834
25/06/2018     44915
01/01/2018     43494
28/06/2017     41068
02/08/2017     40046
01/08/2017     34089
06/07/2017     33920
15/05/2017     33173
11/09/2018     29919
14/07/2017     29627
softetechnologies