Just wondering if strings are handled as arrays? For example:
Dim message as String message = "hello world"
Can I use message(0) to get the length of the string?
Oh, and if that's not possible - is there a simple way to get the length of a string?
Yes, you can use message(0) to get the length of the string.
Log in to post a comment.
Just wondering if strings are handled as arrays?
For example:
Dim message as String
message = "hello world"
Can I use message(0) to get the length of the string?
Oh, and if that's not possible - is there a simple way to get the length of a string?
Yes, you can use message(0) to get the length of the string.