Looking at this topic, and trying to implement this solution leads to an error.
My problem is: I have a string variable: let say: NAME.
For instance, suppose NAME equals "andrew smith"
A would like to get the 1st letter of NAME and put it in the variable LETTER1 (also declared as s string in GE)
Unfortunately, the following code does not seem to work:
char LETTER1 = NAME[0];
Why? Many thanks for your help.
Regis