If i have a string say, 1234 Newyork Street, America and i want to extract the first LETTER from the string.
I understand how to use
string.charAt(0);
But this extracts for example '1' from the example above. How would i modify the code so if i enter
string.charAt(0);
I extract the first LETTER which is 'N'.