281a indexOf and substring - Java example
Home Accessibility Courses Diary The Mouth Forum Resources Site Map About Us Contact
indexOf and substring
Strings example from a Well House Consultants training course
More on Strings [link]

This example is described in the following article(s):
   • Writing with our customers words - [link]
   • String handling - from first steps to practical examples - [link]

Source code: oaksey.java Module: J707
/* indexOf and substring

string analysis - looking for spaces, splitting a string,
etc - this is an example of some of Java's lower level
methods that work on String objects */


public class oaksey
   {
   public static void main(String[] args)
      {
      System.out.print
            ("Please enter a phrase : ");
      String you_said = WellHouseInput.readLine();

      int old_posn=0,posn=0;
      while (posn>=0)
         {
         posn = you_said.indexOf(' ',old_posn);
         String next_word = (posn>0) ?
               you_said.substring(old_posn,posn):
               you_said.substring(old_posn);
         System.out.println("Next word: "+next_word);
         old_posn = posn + 1;
         }
   }
}

/* Sample Output

Please enter a phrase : Come as a student, leave as a friend.
Next word: Come
Next word: as
Next word: a
Next word: student,
Next word: leave
Next word: as
Next word: a
Next word: friend.
munchkin:j707 grahamellis$

*/
1fd5
Learn about this subject
This module and example are covered on the following public courses:
 * Learning to Program in Java
 * Java Bootcamp
 * Java Programming for the Web
Also available on on site courses for larger groups

Books covering this topic
Yes. We have over 700 books in our library. Books covering Java and associated technologies are listed here and when you've selected a relevant book we'll link you on to Amazon to order.

Other Examples
This example comes from our "Strings" training module. You'll find a description of the topic and some other closely related examples on the "Strings" module index page.

Full description of the source code
The complete module that describes this example is available for download under our Open Training Notes License from our sister site http://www.training-notes.co.uk.

Other resources
• Our Solutions centre provides a number of longer technical articles.
• Our Opentalk forum archive provides a question and answer centre.
The Horse's mouth provides a daily tip or thought.
• Further resources are available via the resources centre.
• All of these resources can be searched through through our search engine
• And there's a global index here.

Web site author
This web site is written and maintained by Well House Consultants.

Purpose of this website
This is a sample program, class demonstration or answer from a training course. It's main purpose is to provide an after-course service to customers who have attended our public private or on site courses, but the examples are made generally available under conditions described below.

Conditions of use
Past attendees on our training courses are welcome to use individual examples in the course of their programming, but must check the examples they use to ensure that they are suitable for their job. Remember that some of our examples show you how not to do things - check in your notes. Well House Consultants take no responsibility for the suitability of these example programs to customer's needs.

This program is copyright Well House Consultants Ltd, but is part of a module released under our Open Training Notes license. You may use it for your own training needs provided that you adhere to the conditions laid down. In summary, these require you (a) to make no charge for the training and (b) to include a full copy of our copyright statement with the material your distribute.

Any of our images within this code may NOT be reused on a public URL without our prior permission. For Bona Fide personal use, we will often grant you permission provided that you provide a link back. Commercial use on a website will incur a license fee for each image used - details on request.

You can Add a comment or ranking to this page

© WELL HOUSE CONSULTANTS LTD., 2013: Well House Manor • 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • FAX: 01144 1225 899360 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho

PAGE: http://www.wellho.net/resources/ex.php4 • PAGE BUILT: Sat Apr 13 08:12:34 2013 • BUILD SYSTEM: wizard
0