Sunday, August 11, 2019

Java Program to Reverse word in the String

This tutorial explains how to reverse word in java. Lets see the following java program to reverse word in string.

Java Program to Reverse word in the String


ReverseWord.java
import java.io.IOException;

public class ReverseWord  {

 public static void main(String[] args) throws IOException {
  // TODO Auto-generated method stub

  String input="Simple Form Validation In Reactjs Example";    //Input String 
       String[] words=input.split(" ");  //Split the word from String
       String[] revwords=new String[words.length];
       int j=0;
       for(int i=words.length-1;i>=0;i--)   //Loop for Reversing the Word  
       {
          revwords[j]=words[i];   //Storing the reversed words
          System.out.println(revwords[j]);
          j++;
       }  

 }
}

Output:-
-------------

This is all about Java Program to Reverse word in the String. Thank you for reading this article, and if you have any problem, have a another better useful solution about this article, please write message in the comment section.

No comments:

Post a Comment