I have a string that says "12345". I want to take the 3rd element from the string to convert it to integer (which in this case, the 3rd element would be '3'). How would I do so ?
I heard that you can use Integer.parseInt(s) but this will return the whole integer of the String. I just want one element from it, and at the x-th position.