For example:
"string text;" has the value of "Sample text".
This text has 11 characters. How could I store the number into an int. So that
int textnumber;
would have the value 11.
textnumber = StrLen (text);
or
textnumber = text.Length; (newer 2.71 betas)
What, is it that simple? I had no idea. Thanks!