|
-
November 14th, 1999, 09:34 AM
#1
Elements of a String
How can I get the 3rd or 4th Element of a String
-
November 14th, 1999, 02:32 PM
#2
Re: Elements of a String
Dim strThirdCharacter as string
Dim strFourthCharacter as string
Dim strMyString as string
strMyString = "Testing"
strThirdCharacter = mid(strMyString, 3, 1)' will be returned "s"
strFourthCharacter = mid(strMyString, 4, 1)' will be returned "t"
HTH
Vlad
-
November 15th, 1999, 03:14 AM
#3
Re: Elements of a String
thanks a lot
mfG Pueromane
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
|