Home Answers Viewqa Java-Magazine Finding the longest word in a user given string

 
 


Mayawati Yayawati
Finding the longest word in a user given string
2 Answer(s)      10 months ago
Posted in : Java Magazine

In java, accept a string from the user and find the longest word in it.

View Answers

July 24, 2012 at 6:13 PM


The given code finds the longest word from the string.

import java.util.*;

class LongestWord
{
Scanner input=new Scanner(System.in);
System.out.println("Enter string: ");
String str=input.nextLine();
String stringArray[] = str.split("\\s");
public String compare(String st1, String st2){
if(st1.length()>st2.length()){
return st1;
}
else{
return st2;
}
}
LongestWord(){
String word = "";
for(int i=0;i<stringArray.length;i++){
if(i==0){
word = stringArray[0];
}
word = compare(word, stringArray[i]);
}
System.out.println("Longest word = " + word);
}
public static void main(String []args){
new LongestWord();
}
}

July 25, 2012 at 1:10 AM


import java.util.*;

class LongestWord {

    String str = "Ram is intelligent boy";
    String stringArray[] = str.split("\\s");

    public String compare(String st1, String st2) {
        if (st1.length() > st2.length()) {
            return st1;
        } else {
            return st2;
        }
    }

    LongestWord() {
        String word = "";
        for (int i = 0; i < stringArray.length; i++) {
            if (i == 0) {
                word = stringArray[0];
            }
            word = compare(word, stringArray[i]);
        }
        System.out.println("Longest word = " + word);
    }

    public static void main(String[] args) {
        new LongestWord();
    }
}
/**
 *Longest word = intelligent
 * 
 * */


You will get the more information 

Get the SCJP and SCWCD dumps 









Related Pages:
Finding the longest word in a user given string
Finding the longest word in a user given string  In java, accept a string from the user and find the longest word in it.   The given code finds the longest word from the string. import java.util.*; class LongestWord
finout longest word in sentence
]); } System.out.println("Longest word = " + word); } public static void main(String []args){ new...finout longest word in sentence  write a program , how to find out the longest word in a sentence using java   Hi Friend, Try
Find Longest Word from the string using Java
Find Longest Word from the string using Java Here we are going to find the longest word from the string. For this, we have specified the string which... and allow the longest word to display. Here is the code
Finding a given word using regular expression
Finding a given word using regular expression  ... a given word from the String and also the no of times the word exists using regular... involved in program Find.java are described below:- String regex="\\b Tim\\b":-Here
Finding word using regular expression
Finding word using regular expression       This Example describes the way to find the word from... the given regular expression into a pattern. String text = " JavaSun's regex
servlet code for finding the table for given number
servlet code for finding the table for given number  servlet code for finding the table for given number?   Here is a an example that accepts a number from the user and display its multiplication table using servlet. 1
Finding start and end index of string using Regular expression
Finding start and end index of string using Regular expression... the way for finding start and end index of the string using regular expression... in program  Finding_index.java are described below:- String[] text
string
string  How to count a particular character in a given sentence and also displaying that contain word? Like I want to find "a" in the string "This is example of java Programme" and also display word that contain "a" character
Collections Exercise 4 - Word Translator
, given a word (String), to its translations (a bunch of Strings). Problems...(String word), which returns an iterator over all definitions for the given word...: An online dictionary is needed. The user will enter a word and the program
Reverse word of string in alphabetical order
Reverse word of string in alphabetical order  wap a program that reverse word of string in alphabetical order. e.g. input by user The purpose of education is to replace an empty mind with an open one output
Write a program in JAVA which accepts a sentence & displays the longest word in the sentence alongn with it length of the word.
Write a program in JAVA which accepts a sentence & displays the longest word in the sentence alongn with it length of the word.  **A program in JAVA which accepts a sentence & displays the longest word in the sentence along
Java count frequency of words in the string
how to count the occurrence of each word in the given string. String... of words in a string. In the given example, we have accepted a sentence as a string from the user and convert it to String[] where each element of the array
Finding an Element in a Sorted Array
in the array otherwise the program shows the message : "Given word is not available... from 0 (zero) to length_of_array-1, if the given string is available... this method returns the negative value that means given string is not available
Determining the Word Boundaries in a Unicode String
Determining the Word Boundaries in a Unicode String In this section, you will learn how to determine the word boundaries in a unicode string. Generally, we... to break the string into words. In the given example, we have invoked the factory
Location finding error - JSP-Servlet
Location finding error  Location needs from drive name: My file uploading program has an error. It requires the location should be given from the directory name. Instead of this if only parent directory is given it shows
Repeat word as many times as it has characters
in it. To do this, we prompt the user to enter the word using the Scanner class. After finding the length of the word, we have created a for loop, it will display...Repeat word as many times as it has characters in Java This section
Example - Replace word
occurences a word in a string with another word. Assume the method signature... a new String. The word "replace" is probably misleading. Also, the method... woman". Ok, but what if we changed the orginal string to contain the word "human
Word Count
Word Count       This example counts the number of occurrences of  a specific word in a string. Here we are counting the occurrences of word "you" in a string
Write String in Word document
Write String in Word document  How to read and write strings in word document
JTextArea to Word Document
see in the given code, we have allowed the user to enter data in textarea...JTextArea to Word Document Jakarta POI has provided several classes that enable us to perform read, write operations with ms word file. Here we are going
java programming
java programming  WAP to find the longest word from a user given string.   The given code finds the longest word from the string. import... of the string, not storing them in an array and then finding the longest word using
String file in to word file in java
String file in to word file in java  How to convert a String format notepad file into Ms word file in java
count occourance no of time no between 0 to 9 given by user in java
count occourance no of time no between 0 to 9 given by user in java  import java.io.*; class count_no { public static void main(String args... example that accepts 9 integers from the user and count the occurrence of each
String file in to word file in java
String file in to word file in java  how to convert a String format word file into Ms Word file using java? please can anyone of you help me
Compare String with given String arraylists.
Compare String with given String arraylists.  I have one String for example abcThirtyFour. i have two arraylists of string. one contains one, two.... i was thinking of comparing given string with both the arraylists. but, i
Day for the given Date in Java
Day for the given Date in Java  How can i get the day for the user...(String[] args){ Scanner input=new Scanner(System.in); System.out.println..."); String day=f.format(date); System.out.println(day
coding for given question
= new String[5]; //Code here for user input in string1 int result...coding for given question  Board of Control for Cricket in India... of best bowlers among the given lot. Input/Output Specs Input Specs Your program
find the given input is integer or string
find the given input is integer or string  simple coding for to check the given input value is integer or no.If the given value is integer display... CheckValue { public boolean checkIfNumber(String in) { try
Help me on the given problem of String
Help me on the given problem of String  class Test { string s1="Hello",s2="lo"; System.out.println((s1=="Hel"+"lo")); System.out.println((s1=="Hel"+lo)); } The above program prints true
Java word extraction program. - Java Beginners
Java word extraction program.  Need to code a public class named WordExtractor that contains a main method. Prompt the user to enter a line of text... on the same line of the console screen. next, prompt the user to enter
Finding Lost Frames - Java tutorial
Finding Lost Frames 2001-05-10 The Java Specialists' Newsletter [Issue 019] - Finding Lost Frames Author: Dr. Heinz M. Kabutz If you are reading... fact to the Politburo, but perhaps I've read too many spy stories. Finding
Reverse string in BlueJ
Reverse string in BlueJ  wap that user enter a string and one word. so i want that program search word in string entered by user if word exist in string than reverse only that word and give output. e.g This is a flower (string
String
String  write down the code of remove any character from a given string without using any string function   please give me the code of remove any given character from a given string without using function
JSP User-Agent
that includes a string variable user Agent. The string variable store the value returned... JSP User-Agent          JSP User-Agent is used to display
string
string  java prgm to find total occurence of a given string pattern in a sentence
string
string  java prgm to find total occurence of a given string pattern in a sentence
upload and retrieve a word document - JSP-Servlet
upload and retrieve a word document  Hi, I have a problem with uploading a word document to My sql database to a BLOB data type variable. And also unable to retrieve the word document from database. I am writing the code
string
string  a java program to input a string and display the string with the first character of every word in capital   import java.util.*; import java.io.*; public class FirstLetter{ public static String
Java search word from text file
: "); String word=input.next(); File f=new File("c:/student.txt...]; String name = st[1]; String marks = st[2]; if(name.equals(word...Java search word from text file In this tutorial, you will learn how to search
Doclet for finding missing comments - Java Tutorials
Doclet for finding missing comments 2002-06-05 The Java Specialists' Newsletter [Issue 049] - Doclet for finding missing comments Author: Dr. Heinz M... a Java specialist, especially if it can be done remotely. Doclet for finding
Convert a String to Hexa
;  In the example given below, you will learn how to convert String to hexadecimal  number. This example takes a user input string and convert in hexa numbers. Program asks the user to enter the string. User enters
string
string   just i want to a program in a short form to the given string in buffered reader for example input string: Suresh Chandra Gupta output: S. C...; public class StringTest { public static void main(String [] args
Breaking the String into Words
the tokenized string which is the separate word of the given string. Through the help... into separate words. This program takes a string from user and breaks it into words. The given string has been broken into words based on the blank spaces
Updating user profile
Updating user profile  how should i provide user to update his profile with edit option including entered data by user should be shown in jsp page fileds   The given code retrieve data from database and display
Finding a Preference in a Preference Tree
Finding a Preference in a Preference Tree   ... the preference of Preference node in a Preference Tree.  You can see in the given...; }   public static void main(String[]args) 
Display first letter of every word in uppercase
Display first letter of every word in upper case In this Java tutorial section, you will learn how to display the first letter of every word in uppercase. For this, we have allowed the user to enter the string. The BufferedReader class
User Define Alert Example
User Define Alert Example       Creating a user defined alert message, In the given... to draw string. On clicking Alert option, a alert message will be displayed
iPhone String Match
within the given set of string. You can find lots more string methods... methods. Basically, String is a class which have the methods for finding... iPhone String Match In this "String match" example we
Greedy and Non-Greedy Matching in a Regular Expression
a string in the given string through the Greedy and Non-Greedy way of matching... from the given string or text or from the file content according... string or text inputed by the user or the contents of the file upto last characters
Finding out the super class name of the class
Finding out the super class name of the class   ... name by using the getSuperclass() method. The given example demonstrates the use...;void main(String[] args) {  Checkbox big = 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.