I'm making a calculator and I have converted a String to a char array using
char[] b = inputString.toCharArray();
(inputString is my String variable)
Because the String is an input I don't know how large the array will be. Is there an inbuilt method that allows you to find the number of elements in the array? Thanks in advance.

b.lengthto get the array size – Java Mentor Jul 30 '12 at 18:04