I have a string, from which I want to extract one character that is needed to be used in a Case statement. The thing is the Case only takes Char values and not string values. So how do I convert a single string character to a char?
I have a string, from which I want to extract one character that is
Share
Use the string as a character array (1-based), and use the index of the character you want to use in the
casestatement. For instance, if you want to use the first character:NB make sure you check the the string is of at least that length before you use the subscript, or you’ll get an access violation.