I am obviously a crappy programmer because I do not know this... but How do you parse a string to be a char? I tried Char.parseChar(any string here), but it didn't work.
Please help me-
The problem is that a String can never be a char. A String is an array of chars so to be able to convert a String to a char doesn't make sense. It is very easy however to get the array of chars that make up a String. Example:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.