Total members 10261 | Gratitudes |It is currently Tue May 22, 2012 4:43 pm Login / Join Codemiles


All times are UTC [ DST ]




Post new topic Reply to topic  Quick reply  [ 2 posts ] 
Author Code Snippet
 Code subject: Breaking the String into Words
PostPosted: Tue Nov 11, 2008 10:44 pm 
Offline
Mastermind
User avatar

Joined: Tue Mar 27, 2007 10:55 pm
Posts: 2279
Location: Earth
Has thanked: 39 time
Have thanks: 61 time

Breaking the String into Words
Code:
import java.io.*;
import java.util.*;

public class BreakStringToWord{
  String str;
  int count = 0;
  public static void main(String[] args) {
    BreakStringToWord c = new BreakStringToWord();
  }
  public BreakStringToWord(){
    try{
      InputStreamReader ir = new InputStreamReader(System.in);
      BufferedReader br = new BufferedReader(ir);
      System.out.print("Enter String: ");
      str = br.readLine();
      System.out.println("Enter String is : "+ str);
      System.out.println("Breaking this string is : ");
      StringTokenizer token = new StringTokenizer(str);
      while (token.hasMoreTokens()){
        count++;
        str = token.nextToken();
        System.out.println(str);
      }
      System.out.println("Number of Words : "+ count);
    }
    catch(IOException e){}
  }
}

_________________
Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )


TOP
 Profile Send private message  
Reply with quote  
 Code subject: Re: Breaking the String into Words
PostPosted: Sat Jan 14, 2012 10:59 am 
What a joy to find such clear tihinnkg. Thanks for posting!


TOP
  
Reply with quote  
Post new topic Reply to topic Quick reply  [ 2 posts ] 
Quick reply


  

 Similar topics
 Change the letter spacing of the words
 replacing each tab by the string “Tab”,
 search for string in a cell array
 Trim string in JavaScript
 How to read string text in files
 add string to another, Lowercase ,Uppercase
 search in a string and replace
 get number of words in a string
 sort words in c++
 Check empty string

All times are UTC [ DST ]


Users browsing similar codes

Users browsing this forum: No registered users and 3 guests



Jump to:  
Previous Code Snippet | Next Code Snippet 




Home
General Talks
Finished Projects
Code Library
Games
Tutorials

Java
C/C++
C-sharp
php
Script
JSP/Servlets
Ajax
ASP/ASP.net
Google SEO
Database
Communications
Phpbb3 styles
Photoshop tutorials
Flash tutorials
Find a job






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team