single character out of a string...

is there a way in progress how i can get the single characters out of a string?

for example my string is:

hello

but i want only the first letter... (h)


....thank you for your help
 

newprog

New Member
Yes

disp substring("Hello",1,1).

Just put a variable in "Hello" the first digit is position, the second is length. So if you wanted "He"

disp substring("Hello",1,2).

etc etc
 
Top