Avatar of shragi
shragi
Flag for India asked on

position of the number

I had a notepad... which contains... 3489 numbers...
I can search for a particular number but I would like to know the position of that number in the notepad..

example file:
123, 1245, 124, 567, 678, 6787,56778,345,6786,234,89,897,4556,5890,456,890,489,6798...

all numbers are unique...

ok if i seach for 567 If I can find it then i can print it but i would lke to know the position of that number 567
here the position is 4

Java EEJava

Avatar of undefined
Last Comment
shragi

8/22/2022 - Mon
Gurvinder Pal Singh

did you tried the indexOf(); method of String class?

I.e, when you have got the contents of the file in a string, you just need to do indexOf(<string to be searched>); , it should display the index of that number in that string

For getting file contents in string
http://snippets.dzone.com/posts/show/1335
http://www.kodejava.org/examples/52.html

kaushikdeb

I guess you mean, you have a text file ('I had a notepad'!) and you are trying to do the operation you mentioned using java.
If that is the case, you can use the following steps to do this (may not be the best solution, but it should be enough and easy for a 'new to java programming' person :) ):
1. Read contents of the text file in java and get the whole data in a String.
2. Use the split function of String giving ',' (comma) as a separator. This function returns String array.
3. Now you can find the number you want and the index of the array for that number would be the position.

Hope this helps.
Gurvinder Pal Singh

If you want to find the position of the number (assuming the numbers will be separated by comma), then after you have read the file into a string, split the string with commas to get the array of number.
see this link on how to get its index
http://www.java-forums.org/new-java/12254-direct-way-get-index-array.html
Your help has saved me hundreds of hours of internet surfing.
fblack61
ksivananth

use Scanner, which is optimal than split... check this example, http://www.javapractices.com/topic/TopicAction.do?Id=42

you would use "," as delimite than "=" in the example!
ASKER CERTIFIED SOLUTION
su_mu

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Subrat (C++ windows/Linux)

//I can search for a particular number
How r u searching the no?
Send the code. It'll be easier to find out what problem ur facing to find the index...
shragi

ASKER
@su_mu

this code works perfectly.... can you tell me how to search for multiple numbers...

search three numbers at a time...

⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.