Hello I need to get a char's index form a char array (By not using String). Yes I know it is unreasonable to do it while there is String but I need to know how to do it. So, I would appreciate that if you could show understanding.
My char array holds:
" ABCDEF"
(It has a space at the beginning).
When I try this: (I have already imported java.util.Arrays;)
Arrays.toString(charArr).indexOf(charNeeded);
It returns 16 because:
System.out.println(Arrays.toString(charArr));
Prints [ , A, B, C, D, E, F], it means the String that is being returned(index being searched in) is that. I need to search the index on " ABCDEF" can anyone help?
Thanks in advance.