This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes Check for String Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Check for String" Watch "Check for String" New topic
Author

Check for String

Boon Subra
Ranch Hand

Joined: Jul 18, 2001
Posts: 69
Hi All,

The code:

String clfiles= "9,8,7,6,5,19,18,17,16,15,14,13,12,11,10";
String fileno="1";

In the above part of code,clfiles might grow according to the case.I am checking for the particular exact number in the clfiles
ie checking for exact fileno in clfiles.

substrings usually bring the first occurences.
Please help me out.
I am stuck.
Thanks,


Bhuvana
Ashok Mash
Ranch Hand

Joined: Oct 13, 2000
Posts: 1936
You could tokenize clfiles (comma separated tokens) and run thru the collection to see if it has the filename/number that you are looking for.

Just a though!

Cheers!


[ flickr ]
Gjorgi Var
Ranch Hand

Joined: Feb 24, 2004
Posts: 85
... or better yet, a regular expression that would look for the particulars of your interest...
Tony Jackson
Ranch Hand

Joined: Feb 23, 2001
Posts: 45
Hi Bhuvana,

This sounds like maybe a programming assignment, so i will give you a couple ideas but won't give you the code.

You are on the right track using substring. if you know that a comma is at position p in String s, then you can use s.substring(p+1) to give you the part of the String that is to the right of the comma.

You can use the indexOf method to find out the position of the next comma.

Combine these in a loop and you have a powerful way to loop through the string.

You can then do a couple of things: You can "tokenize" the string as mentioned by Ashok. That means creating an array (or List) and putting the separate elements in the array and then you can loop through it easily.

Or if you are simply looking for an item (such as the first occurance of the number "17" then you can stop when (if) you find it.

It can be confusing at first in figuring out how to put the loop together. What i suggest is that you write down, in words, the behavior of the program/loop. In other words, how would YOU find the first occurance of the number "17" in such a list? What do your eyes and mind do as you are looking for it? you start at the beginning, look for a 17 that is between 2 commas, etc.

Good luck,
Tony
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Check for String
 
Similar Threads
One questions maybe not related to java
How to iterate using struts 2 ?
Need Help with HTTP Request
Script error in jsp
document.forms[0].elements.focus() is not working in IE 7.0+ and FF 3.0