I think a better solution to find the total number of results on the search results page would be using .split method of String ... for example:String stringA = "1 - 25 of 2276 items";int numberOfResults = Integer.parseInt(stringA.split(" ")[4]);
Thats ok.
Yea, sorry if I am a bit ahead of class and such ;)
Yes, this is possible as well.
We havent covered it yet as it relies on arrays.