|
-
Nov 14th, 1999, 06:14 PM
#1
Thread Starter
New Member
Hi
Now I got a simple question: How do I select a character of a string.
e.g. the third character of the string "Visual Basic" would be "s"
What is the way to do this?
Regards
Wouter
-
Nov 14th, 1999, 06:36 PM
#2
Hyperactive Member
to select the third char try this
dim hold as string
hold = mid("visual basic",3,1)
hold now contains the char S
the 3,1 indicates to start at the third position and return everything in the length
in this case 1. if the length required was 2 it would return su
hope this helps > locutus
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|