String str = "Java Jives, Java Jives Java"; int i4 = str.indexOf("Jives", 4); int i5 = str.lastIndexOf("Jives", 5); System.out.println(i4); System.out.println(i5); The output is 5 and 5.Can anynody explain the output?
Sudhir Bangera
Ranch Hand
Joined: Oct 10, 2000
Posts: 50
posted
0
indexOf(String str, int fromIndex) Returns the index within this string of the first occurrence of the specified substring, starting at the specified index. "Jives" is found at index 5 so the output is 5. If you set the fromIndex as 5 above, it still returns 5.
lastIndexOf(int ch, int fromIndex) Returns the index within this string of the last occurrence of the specified character, searching backward starting at the specified index. Begins to search backward from index 5 but since "Jives" is found at index 5, it returns 5. If you set the fromIndex as 4, "Jives" is not found hence returns -1. I was confused by looking at the code too, but after running the code with different index values, I arrived at this conclusion.
Smith
Greenhorn
Joined: Oct 18, 2000
Posts: 2
posted
0
still iam not clear of lastIndexOf
michael huang
Ranch Hand
Joined: Jul 30, 2000
Posts: 63
posted
0
hi, Smith this kind of problem you can take a look of API doc. i try to explain: first, indexOf() is search from start and lastIndexOf() is search from end. second, indexOf() is find the lowest value as str.startWith("Jives", 4) && k>=4(according to doc ), so find String str is "Jives, Java Jives Java" and result is 5; lastIndexOf() is find the largest value as str.startWith("Jives", 5) && k<=5, so find String str is "Java J", it can find at positoin 5->J, so result is 5; hop this can help michael
Ajith Kallambella
Sheriff
Joined: Mar 17, 2000
Posts: 5782
posted
0
'Smith' PROPER NAMES ARE NOW REQUIRED!! Read this post for more details. Ajith
Open Group Certified Distinguished IT Architect. Open Group Certified Master IT Architect. Sun Certified Architect (SCEA).
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.