Home Answers Viewqa Java-Beginners Program using String functions

 
 


soumyadeep
Program using String functions
1 Answer(s)      2 years and 9 months ago
Posted in : Java Beginners

Write a program to accept a sentence and find out how many times the word "the" occurs?
View Answers

August 9, 2010 at 11:05 AM


Hi Friend,

Try the following code:

import java.util.*;

class CountSameWords {

public static void main(String[] args) {
int count = 0;
Scanner input = new Scanner(System.in);
System.out.print("Enter string:");
String st = input.nextLine();
String s1 = "the";
StringTokenizer stk = new StringTokenizer(st);
while (stk.hasMoreTokens()) {
String str = stk.nextToken();
if (s1.equalsIgnoreCase(str)) {
count++;
}
}
System.out.println(s1 + "-" + count+" times");
}
}

Thanks









Related Pages:
Program using String functions - Java Beginners
Program using String functions  Write a program to accept a sentence... { public static void main(String[] args) { int count = 0...); System.out.print("Enter string:"); String st = input.nextLine
Functions and Methods
the frequency of each vowel. (5) Write a program in Java to input a string using...Functions and Methods  (1) Write a program in java to input 10 numbers. Use a function to find and print the cube of each number. (2) Write a program
without using built-in functions
without using built-in functions  Hai sir... Please help me to solve this... Findout occurances of each string in every another string (built - in functions are not at all allowed) all, and, sand, falling wall and sand
STRING FUNCTIONS
STRING FUNCTIONS  HERE IS THE QUESTION THAT I HAVE IN MY INFORMATICS... a string and 2 integers from user. It then changes the case of characters at those... String removeCharAt(String s, int pos) { StringBuffer buf = new StringBuffer
Functions and Methods
Functions and Methods  Write a Java program to input the sides... { public static void decide(int side1,int side2,int side3){ String..."; System.out.println(type); } public static void main(String[] args
Java reverse string without using inbuilt functions
Java reverse string without using inbuilt functions In this tutorial, you will learn how to reverse string without using any inbuilt functions. Here, we have created a method to reverse the string and returns a new string with reverse
String
String  write a program using string it should replace 'c'char to integer number as 1 in whole source
string
string  a java program using string function to input any string... ArrangeStringAlphabetically { public static void main(String[] args) { Scanner input=new Scanner(System.in); System.out.print("Enter string
string
string  a java program using string function that computes your initials from your full name and display them   Please visit the following links: http://www.roseindia.net/tutorial/java/core/printInitials.html http
string
string  a java program using string function and access modifiers to automate the insurance company which will have to manage the information about policy holders Data Members: 1)Policy No 2)Name of policy holder 3)Address 4
JavaScript array of functions
in understanding a JavaScript array of functions. For this we are using Java Script... JavaScript array of functions   ... a variable hold the string. The for loop execute and run the script till variable i
JSTL Functions
): It returns a subset of a string.  The code of the program is given... of substrings using fn:split() : ${fn:length(fn:split(string," "))} <br> Ignore... the String into upper case using fn:toUpperCase(): ${fn:toUpperCase(string)}<
String Function Program
String Function Program  The string function program is just an application of the string manipulation functions in JAVA. The program is designed to count the number of one-letter word, two-letter word, and three-letter words
greatest of 3 numbers using classes and functions.
greatest of 3 numbers using classes and functions.  WAP to calculate greatest of 3 numbers using classes and functions with parameters through input... FindLargest{ public static void main(String[] args){ int max = Integer.MIN
String reverse program
String reverse program  write a java program for reverse string? if the string is "Hi welcome to hyderabad" the reverse string is "hyderabad... for help. You can split the String into String array using split method of String
Program to swap the string
and then swaps both the string without using third variable. import java.util.*; class...Program to swap the string  Hi, can any one tell me the code to swap the 2 strings without using temporary varibales??? Thanks a lot in advance
jsp functions - JSP-Servlet
jsp functions  hi,sir i need a simple jsp program using page directive with session attribute  Hi friend, To get the solution of your problem visit this link.... http://www.roseindia.net/jsp
php Variables and Functions
; how does it help to the program? We create functions to make the program easier... and again. A program contains several functions that can be used several times . ... the program to return some value either in the form of int, float, array, string
Stored Procedures and Functions
. If we are using CONTINUE the the program will carry on the process after the handler has been called. When we are using EXIT then the program will end... Stored Procedures and Functions     
jQuery Utility Functions
jQuery Utility Functions      In this section we are discussing about jQuery Utility Functions. Understanding these functions are important as you will have to use
PHP Variables Functions
whenever we required in our application. Using functions in your application saving...PHP Variables Functions In this tutorial we learned about how to create functions or how to use predefined functions. If you want to see the real power
JDBC Functions
JDBC Functions       In this Tutorial we want to describe you a code that helps you easy to understand Jdbc Functions. The code include a class Jdbc Functions, Inside the main method, the list
A Program To Reverse Words In String in Java
A Program To Reverse Words In String in Java  A Program To Reverse Words In String in Java for example: Input:- Computer Software Output :- Software Computer without using split() , StringTokenizer function or any extra
program
program  Write a program to print details of a week for a particular day using array of objects Integer and String. OUTPUT: First Day of Week... Seventh Day of Week is Sunday Note: Use two dimensional array of String
Math Constants and Functions using JavaScript
Math Constants and Functions using JavaScript  What's Math Constants and Functions using JavaScript
associate functions with objects using JavaScript
associate functions with objects using JavaScript  How to associate functions with objects using JavaScript
Program
?? using string Buffer class and perform the following operations. i) Append s1 and s2. ii) Reverse string s1. iii) Find length of string s1 and s2. iv) Replace string s1 to â??Simpleâ??. v) Extract 0th to 6th character from string s2 into s3
array string
array string  how to sort strings with out using any functions
string program
string program  write a program to print the pattern p r o program r a m
read string - using loops in Java
read string - using loops in Java  Write a program to read a string composed of an unknown number of words, then count the number of words in the string, and Display the longest and shortest words, with first letter Uppercase
Program
question paper using radio button.After submit calculate marks and display our marks... import="java.util.*"%> <% String id[]= new String[10]; for(int i=0;i<10;i++){ id[i]=request.getParameter("radio"+i); } String str[]= new String[10
string program
string program  reads sentence and find the average length of word... AverageLengthOfWords { public static void main(String[] args...); System.out.print("Enter sentence: "); String st=input.nextLine(); String str
Interchanging String using RegularExpression
a String and interchange the index of string using Regularexpression. The steps involved in interchanging a String are described below: String parg = "For some... Interchanging String using RegularExpression
static functions
2. Static Functions 3. Instance Variable  Static Variables Static... main(string args[]){ a obj=new a();//can ,t requirement of it a.display...{ public static void main(string args[]){ a obj=new a();//can ,t requirement
php functions
php functions  hi sir, we give some egs those not produce the results those programs simply display the program on browser   Have a look at the following links: http://www.roseindia.net/tutorial/php/phpfunctions
Replacing String using Regularexpression
Replacing String using Regularexpression       This Example describe the way to replace a String using Regularexpression. The steps involved in replacing a String are described
String
String  how to add spaces with string functions.?   Hi... String addSpaceToRight(String s, int n) { return String.format("%1$-" + n + "s", s); } public static String addSpaceToLeft(String s, int n) { return
Retrieve the String using expression
Retrieve the String using expression   ... using expression.For this we are going to make program named NotLookahead.java. The steps involved in program NotLookahead.java are described below:- String
MySQL String Function
; In this section you can learn about the uses of MySQL String functions. These functions can be used to manipulate the string data. Here we have compiled the almost all String functions that you can use to learn more about string
string
string  write a program to accept the string and store the reverse stream into another array and print
Java Program
(using for loop). Instructions: *You should surely use Functions in this question... a program to calculate and print the sum of odd numbers and the sum of even... void main(String[]args)throws Exception{ BufferedReader br=new
String
String  How to Convert sunnapu gopal to Sunnapu Gopal in java using 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
String Reverse Using StringUtils
String Reverse Using StringUtils       In this example we are going to reverse a given string using StringUtils api. In this example we are reversing a string and the reversed
string
string  a java program to replace all matching substrings
string
string  a java program to input a string and display the string...*; import java.io.*; public class FirstLetter{ public static String capitalizeFirstLetter( String str ) { final StringTokenizer st = new StringTokenizer( str
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
string
string  program for String reverse and replace in c,c++,java e.g.Input:10,20,hello output:hello;20;10   Hi Friend, Try the following java...(String[] args) { String array[]=new String[5]; Scanner input
Input - Output String Functions
Input - Output String Functions       This tutorial is showing some functions that you need to use for your taking... a string data and input them directly into your database. Some special characters
string
string  how we conunt the no. of words in java without using in pre defined method in java

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.